MCP Server for Brazilian Central Bank Time Series (SGS/BCB) - Economic and Financial Data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bcb-br": {
"args": [
"-y",
"bcb-br-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for accessing the Brazilian Central Bank's time series data (SGS/BCB).
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / data
Manage Supabase projects — databases, auth, storage, and edge functions
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
An official Qdrant Model Context Protocol (MCP) server implementation
MCP Security Weekly
Get CVE alerts and security updates for Bcb Br MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for accessing the Brazilian Central Bank's time series data (SGS/BCB).
Query economic and financial indicators such as Selic (interest rate), IPCA (inflation), exchange rates, GDP, and more, directly from AI assistants like Claude.
If you find this project useful, please consider giving it a star on GitHub. It helps others discover the project!
| Tool | Description |
|---|---|
bcb_serie_valores | Query series values by code and date range |
bcb_serie_ultimos | Get the last N values of a series |
bcb_serie_metadados | Get series metadata (name, frequency, source) |
bcb_series_populares | List popular series grouped by category |
bcb_buscar_serie | Search series by name or description (accent-insensitive) |
bcb_indicadores_atuais | Latest values: Selic, IPCA, USD/BRL, IBC-Br |
bcb_variacao | Calculate percentage variation between dates or last N periods |
bcb_comparar | Compare 2 to 5 series over the same period with ranking |
Visit bcb-br-mcp on Smithery and follow the installation instructions for your MCP client.
Use the HTTP endpoint directly, no installation required:
https://bcb.sidneybissoli.workers.dev
Add to your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"bcb-br": {
"command": "npx",
"args": ["-y", "bcb-br-mcp"]
}
}
}
npm install -g bcb-br-mcp
{
"mcpServers": {
"bcb-br": {
"command": "bcb-br-mcp"
}
}
}
What is the current Selic interest rate?
→ Uses bcb_indicadores_atuais
Show me the monthly IPCA for 2024
→ Uses bcb_serie_valores with code 433, dataInicial 2024-01-01, dataFinal 2024-12-31
What inflation series are available?
→ Uses bcb_series_populares with category "Inflação"
Search for series related to the dollar
→ Uses bcb_buscar_serie with term "dolar" (works without accents)
What was the USD/BRL variation over the last 12 months?
→ Uses bcb_variacao with code 1 and periodos 12
... [View full README on GitHub](https://github.com/SidneyBissoli/bcb-br-mcp#readme)