Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 💰 Finance & Fintech
  3. DataBR — API de Dados Públicos Brasileiros
DataBR — API de Dados Públicos Brasileiros logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 8:34:37 PM

DataBR — API de Dados Públicos Brasileiros

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time — check back soon.
View RepositoryVisit Website

Brazilian public data API for AI agents. BCB, IBGE, CVM, B3, compliance. x402 payments on Base.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag — we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON ▾

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "databr-api-de-dados-p-blicos-brasileiros": {
      "command": "uvx",
      "args": [
        "databr"
      ]
    }
  }
}

💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing Alternatives💰 More in Finance & Fintech

Documentation Overview

DataBR

API de dados públicos brasileiros para agentes de IA, com pagamento on-chain via protocolo x402 (USDC na rede Base).

Sem cadastro. Sem API key. Pague por consulta.

Documentação | Python SDK | MCP Server | MCP Marketplace | Smithery


Como funciona

Code
Agente IA → GET /v1/bcb/selic → 402 Payment Required
         → Paga $0.003 USDC on-chain (Base)
         → Retry com header X-PAYMENT
         → 200 OK + dados

O protocolo x402 permite que agentes de IA paguem por dados automaticamente, sem cadastro ou chave de API. Basta ter USDC na rede Base.


Início rápido

curl (explorar sem pagar)

bash
# Health check
curl https://databr.api.br/health

# Ver requisitos de pagamento de qualquer endpoint
curl -I https://databr.api.br/v1/bcb/selic
# → 402 Payment Required + JSON com instruções x402

Python SDK

Terminal
pip install databr
server.ts
from databr import DataBR

client = DataBR(private_key="0x...")  # wallet com USDC na Base

# Taxa Selic
selic = client.bcb.selic()
print(selic.data)  # {"valor": "14.25", ...}

# Empresa por CNPJ
empresa = client.empresas.consultar("33000167000101")
print(empresa.data["razao_social"])

# Due diligence completa
dd = client.empresas.due_diligence("33000167000101")

# Formato LLM-ready
ipca = client.economia.ipca(format="context")
print(ipca.context)  # texto pronto para prompt

MCP (Claude, Cursor, etc.)

Listado no MCP Marketplace — instale direto pelo marketplace ou adicione manualmente ao seu MCP client:

config.json
{
  "mcpServers": {
    "databr": {
      "url": "https://databr.api.br/mcp"
    }
  }
}

170+ ferramentas disponíveis cobrindo todos os endpoints da API.


Endpoints

122 endpoints organizados por domínio. Documentação completa em databr.api.br/docs.

Economia

EndpointPreçoDescrição
GET /v1/bcb/selic$0.003Taxa Selic vigente
GET /v1/bcb/cambio/{moeda}$0.003Câmbio PTAX (USD, EUR, etc.)
GET /v1/bcb/credito$0.003Oferta de crédito
GET /v1/bcb/reservas$0.003Reservas internacionais
GET /v1/bcb/taxas-credito$0.003Taxas de juros por modalidade
GET /v1/bcb/pix/estatisticas$0.003Estatísticas PIX
GET /v1/bcb/focus$0.003Expectativas Focus (mercado)
GET /v1/economia/ipca$0.003Inflação IPCA
GET /v1/economia/pib$0.003PIB trimestral
GET /v1/economia/panorama$0.015Panorama econômico consolidado
GET /v1/ipea/serie/{codigo}$0.003Séries IPEA (macro, social, regional)

Empresas

EndpointPreçoDescrição
GET /v1/empresas/{cnpj}$0.003Dados cadastrais (Receita Federal)
GET /v1/empresas/{cnpj}/compliance$0.007Check rápido CEIS/CNEP/CEPIM
GET /v1/empresas/{cnpj}/setor$0.007Análise setorial
GET /v1/empresas/{cnpj}/perfil-completo$0.020Perfil completo com cruzamentos
GET /v1/empresas/{cnpj}/duediligence$0.075Due diligence automatizada
GET /v1/compliance/{cnpj}$0.010Compliance completo (CGU + CNJ)
GET /v1/credito/score/{cnpj}$0.010Score de crédito estimado

Mercado financeiro

EndpointPreçoDescrição
GET /v1/mercado/acoes/{ticker}$0.005Cotação de ações (B3)
GET /v1/mercado/indices/ibovespa$0.005Índice Ibovespa
GET /v1/mercado/fundos/{cnpj}$0.010Detalhes de fundo (CVM)
GET /v1/mercado/fundos/{cnpj}/cotas$0.005Cotas de fundo
GET /v1/mercado/fundos/{cnpj}/analise$0.010Análise de fundo
GET /v1/mercado/fatos-relevantes$0.005Fatos relevantes CVM
GET /v1/mercado/{cnae}/competicao$0.030Análise de competição
GET /v1/tesouro/titulos$0.003Tesouro Direto
GET /v1/bndes/{cnpj}/operacoes$0.005Operações de crédito BNDES

Transparência e governo

EndpointPreçoDescrição
GET /v1/transparencia/licitacoes$0.003Licitações PNCP
GET /v1/transparencia/contratos$0.003Contratos federais
GET /v1/transparencia/servidores$0.003Servidores públicos
GET /v1/transparencia/pgfn$0.003Dívida ativa PGFN por CNPJ
GET /v1/transparencia/pep$0.003Pessoas Expostas Politicamente (por nome)
GET /v1/transparencia/leniencias$0.003Acordos de leniência por CNPJ
GET /v1/transparencia/renuncias$0.003Renúncias fiscais por exercício
GET /v1/tcu/acordaos$0.003Acórdãos do TCU
GET /v1/tcu/certidao/{cnpj}$0.003Certidão TCU
GET /v1/orcamento/despesas$0.003Execução orçamentária
GET /v1/dou/busca$0.007Busca em diários oficiais

Legislativo

EndpointPreçoDescrição
GET /v1/legislativo/deputados$0.003Deputados federais
GET /v1/legislativo/senado/senadores$0.003Senadores
GET /v1/legislativo/proposicoes$0.003Projetos de lei
GET /v1/legislativo/votacoes$0.003Votações
GET /v1/eleicoes/candidatos$0.003Candidatos TSE
GET /v1/eleicoes/filiados$0.003Filiados partidários por UF
GET /v1/eleicoes/compliance/{cpf_cnpj}$0.007Compliance eleitoral

Jurídico

EndpointPreçoDescrição
GET /v1/judicial/stf$0.010Decisões do STF
GET /v1/judicial/stj$0.010Decisões do STJ
GET /v1/judicial/processos/{doc}$0.015Processos por CPF/CNPJ
GET /v1/litigio/{cnpj}/risco$0.030Risco litigioso

Ambiental

EndpointPreçoDescrição
GET /v1/ambiental/desmatamento$0.005Alertas DETER (INPE)
GET /v1/ambiental/prodes$0.005Monitoramento PRODES
GET /v1/ambiental/embargos$0.005Embargos IBAMA
GET /v1/ambiental/uso-solo$0.005Cobertura MapBiomas
GET /v1/ambiental/risco/{municipio}$0.007Risco ambiental
GET /v1/ambiental/empresa/{cnpj}/esg$0.030Análise ESG

Saúde, energia, transporte e mais

EndpointPreçoDescrição
GET /v1/saude/medicamentos/{registro}$0.003Medicamentos ANVISA
GET /v1/saude/planos$0.003Planos ANS
GET /v1/energia/geracao$0.005Geração de energia (ONS)
GET /v1/energia/tarifas$0.003Tarifas ANEEL
GET /v1/energia/combustiveis$0.003Preços ANP
GET /v1/transporte/aeronaves$0.005Aeronaves ANAC
GET /v1/transporte/acidentes$0.005Acidentes PRF
GET /v1/comercio/exportacoes$0.005Exportações (ComexStat)
GET /v1/educacao/censo-escolar$0.005Censo escolar INEP
GET /v1/emprego/rais$0.005RAIS (emprego formal)
GET /v1/emprego/caged$0.005CAGED (admissões/demissões)

Tributário

EndpointPreçoDescrição
GET /v1/tributario/ncm/{codigo}$0.003Carga tributária por NCM/NBS (IBPT)
GET /v1/tributario/icms/{uf}$0.003Alíquota ICMS interna de um estado
GET /v1/tributario/icms$0.003Tabela ICMS completa (27 UFs) ou interestadual

Análises compostas

EndpointPreçoDescrição
GET /v1/rede/{cnpj}/influencia$0.050Análise de rede e influência
POST /v1/carteira/risco$0.150Risco de carteira (múltiplos CNPJs)

Query parameters

Todos os endpoints aceitam:

ParâmetroExemploDescrição
format?format=contextTexto LLM-ready em vez de JSON (+$0.002)
fields?fields=valor,dataProjeção de campos
since?since=2026-01-01Filtrar a partir de data
until?until=2026-02-01Filtrar até data
limit?limit=10Limite de registros
offset?offset=20Offset para paginação

Formato de resposta

config.json
{
  "source": "bcb_sgs",
  "updated_at": "2026-02-21T10:00:00Z",
  "cached": true,
  "cache_age_seconds": 3600,
  "cost_usdc": "0.003",
  "data": {
    "valor": "14.25",
    "data": "2026-02-21"
  }
}

Preços

FaixaPreço (USDC)Exemplos
Consultas básicas$0.003BCB, IBGE, empresas, legislativo, tributário
Consultas padrão$0.005Ações B3, CVM, comércio exterior
Consultas avançadas$0.007Compliance empresa, DOU, risco ambiental
Premium$0.010Compliance completo, fundos, decisões STF/STJ
Análises cruzadas$0.015–$0.030Panorama, ESG, litígio, competição
Análises profundas$0.050–$0.150Rede de influência, due diligence, carteira
Formato contexto+$0.002Adicional sobre qualquer endpoint

Rate limits: 100 req/min por IP | 500 req/min por wallet x402.


Python SDK

Terminal
pip install databr

Namespaces disponíveis

Read the full README →View source on GitHub →

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • Stripe AI logoStripe AI

    MCP server integrating with Stripe - tools for customers, products, payments, and more.

    💰 Finance & Fintech0 views
    Compare vs Stripe AI →
  • Toolfi logoToolfi

    Open API Marketplace for AI Agents. Crypto data tools with USDC payments on Base.

    💰 Finance & Fintech1 views
    Compare vs Toolfi →
  • BTCFi API logoBTCFi API

    Bitcoin data for AI agents. 27 tools with x402 micropayments. No API keys needed.

    💰 Finance & Fintech1 views
    Compare vs BTCFi API →
  • WingmanProtocol Agent Gateway logoWingmanProtocol Agent Gateway

    Async errands, artifact hosting, watches, memory + 15 calculators for AI agents. x402 on Base.

    💰 Finance & Fintech1 views
    Compare vs WingmanProtocol Agent Gateway →

Reviews

No reviews yet — be the first to share how this listing worked for you.

Frequently Asked Questions about DataBR — API de Dados Públicos Brasileiros

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "databr-api-de-dados-p-blicos-brasileiros": { "command": "npx", "args": ["-y", "DataBR — API de Dados Públicos Brasileiros"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDataBR — API de Dados Públicos Brasileiros AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/databr-api-de-dados-p-blicos-brasileiros?style=directory)](https://allmcps.com/mcp/databr-api-de-dados-p-blicos-brasileiros)
HTML Embed
<a href="https://allmcps.com/mcp/databr-api-de-dados-p-blicos-brasileiros"><img src="https://allmcps.com/api/badge/databr-api-de-dados-p-blicos-brasileiros?style=directory" alt="DataBR — API de Dados Públicos Brasileiros on AllMCPs" /></a>

Technical Specs & Signals

Category💰Finance & Fintech
More technical detailsExpand ▾
TransportSTDIO
RuntimePython
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
36Quality signal: Fair · 36/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

★ FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server →

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge — proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it — no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 💰 Finance & Fintech →Best MCP servers for Finance & Fintech →Alternatives to DataBR — API de Dados Públicos Brasileiros →Install in Claude DesktopInstall in CursorInstall in VS Code