brasil-data-mcp
brasil-data-mcp is an MCP server that exposes Brazilian public data as tools for AI clients (Claude, Cursor, Windsurf), enabling natural language queries against official Brazilian data sources via BrasilAPI.
Consult CNPJ (
consultar_cnpj): Look up a company's registration data (name, status, address, partners/QSA, CNAE, capital, legal nature, Simples Nacional/MEI info).Look up CEP (
consultar_cep): Get a full address (street, neighborhood, city, state, optional coordinates) from a Brazilian postal code.Query a Bank (
consultar_banco): Get a bank's name and ISPB by its COMPE code (e.g., 341 = Itaú, 260 = Nubank).List All Banks (
listar_bancos): Retrieve the complete list of ~250 Brazilian banks registered with BACEN.Query Holidays (
consultar_feriados): List national Brazilian holidays for a given year, including movable dates like Carnival and Easter.Query Area Code (
consultar_ddd): Find which state and cities are covered by a Brazilian phone area code (DDD).Query ISBN (
consultar_isbn): Fetch book metadata (title, authors, publisher, year, language, pages) by ISBN-10 or ISBN-13.Query Economic Rate (
consultar_taxa): Get the current value of a specific rate — SELIC, CDI, or IPCA.List All Economic Rates (
listar_taxas): Get a snapshot of all available economic rates at once.Query CVM Broker (
consultar_corretora): Look up registration data for a CVM-authorized brokerage firm by CNPJ.Prompt — CNPJ Analysis (
analise-cnpj): Guided workflow that queries the Receita Federal and produces a structured analysis (sector, age, company size).Prompt — Economic Snapshot (
panorama-economico): Guided workflow combining current economic rates with upcoming national holidays into a concise snapshot.
brasil-data-mcp
MCP server that exposes Brazilian public data (CNPJ, CEP, banks, holidays) as tools for Claude Desktop, Claude Code, Cursor, Windsurf, and any client compatible with the Model Context Protocol.
Powered by BrasilAPI — no keys, no auth, official data.
🇧🇷 PT — What is it?
Connect your AI client to Brazilian public data without writing a single line of code. Ask in natural language:
"What is the legal name for CNPJ 33.000.167/0001-01?"
"Which city is this ZIP code 01310-100 in?"
"Which bank has the code 341?"
"What are the national holidays for 2026?"
Claude (or another MCP client) calls the tool, returns the structured JSON, and you read the answer in Portuguese directly in the conversation.
Available tools
Tool | What it does |
| Company registration data: legal name, status, address, partners, CNAE |
| Full address from ZIP code (street, neighborhood, city, state, coordinates) |
| Name and ISPB of a Brazilian bank by COMPE code (e.g., 341 = Itaú, 260 = Nubank) |
| Full list of Brazilian banks registered with BACEN (~250 institutions) |
| National holidays for a given year (dates, name, type) — includes Carnival and Easter |
Related MCP server: jurisprudenciaia-mcp
🇺🇸 EN — What is it?
Plug your AI client into Brazilian public data with zero code. Ask in natural language and the LLM picks the right tool, calls it, and answers you with structured data from official sources (Receita Federal, ViaCEP, BACEN).
Currently ships with consultar_cnpj. CEP, banks and holidays are landing next.
🚀 Installation
All instructions below use npx -y brasil-data-mcp, which downloads and runs the latest version without a global installation.
Claude Desktop
Edit the configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"brasil-data": {
"command": "npx",
"args": ["-y", "brasil-data-mcp"]
}
}
}Restart Claude Desktop. Done.
Claude Code
claude mcp add brasil-data -- npx -y brasil-data-mcpCursor
Create or edit .cursor/mcp.json in the project root:
{
"mcpServers": {
"brasil-data": {
"command": "npx",
"args": ["-y", "brasil-data-mcp"]
}
}
}🛠️ Development
git clone https://github.com/alanpcf/brasil-data-mcp.git
cd brasil-data-mcp
npm install
npm run dev # tsx watch — hot reload em desenvolvimento
npm run lint # tsc --noEmit
npm run build # tsup → dist/index.js
npm test # vitestTo point your MCP client to the local build instead of the npm package:
{
"mcpServers": {
"brasil-data-local": {
"command": "node",
"args": ["/caminho/absoluto/para/brasil-data-mcp/dist/index.js"]
}
}
}🗺️ Roadmap
[x] Phase 1 — Skeleton + HTTP client +
consultar_cnpj[x] Phase 2 —
consultar_cep,consultar_banco,listar_bancos,consultar_feriados+ Vitest tests[ ] Phase 3 — CI (GitHub Actions), CONTRIBUTING.md, coverage > 80%, npm publication
[ ] Phase 4 — FIPE, DDD, ISBN, rates (SELIC/CDI/IPCA), CVM, MCP prompts for workflows
💡 Why this project exists
Most AI tools are trained and demonstrated with American data: ZIP code, EIN, FedEx tracking. When a Brazilian dev wants to ask an LLM "give me the registration for CNPJ X", they either resort to scraping, build an HTTP integration from scratch, or give up.
brasil-data-mcp is the shortest path: a single npx and your Claude (or Cursor, or Windsurf) already speaks "Brazilian public data Portuguese". Everything is open source, MIT, no keys, no hostile rate limits — because BrasilAPI has already done the heavy lifting of unifying and caching official data.
If you are a Brazilian dev and use LLMs daily, this server is for you.
🤝 Contributing
Issues and PRs are very welcome. To add a new tool, follow the pattern in src/tools/cnpj.ts (Zod schema + description + handler) and register it in src/index.ts.
Detailed guide in CONTRIBUTING.md (coming soon).
Built with ❤️ in Brazil. Powered by BrasilAPI.
Available Tools
15 toolsconsultar_bancoA
Consulta os dados de um banco brasileiro pelo código COMPE/Febraban via BrasilAPI (fonte: BACEN). Retorna em JSON: nome curto, nome completo, código, ISPB (identificador no SPB). Use quando o usuário fornecer um código de banco e quiser saber o nome, ou quando precisar do ISPB pra montar um PIX/TED. NÃO use para: buscar banco por nome (use listar_bancos e filtre), validar conta corrente, ou consultar agência/conta. Códigos comuns: 001=BB, 104=CEF, 237=Bradesco, 341=Itaú, 260=Nubank, 077=Inter.
| Name | Required | Description | Default |
|---|---|---|---|
| codigo | Yes | Código COMPE/Febraban do banco (1 a 4 dígitos). Aceita string ou número. Ex: 341 (Itaú), 260 (Nubank), 237 (Bradesco). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description takes full responsibility for behavioral disclosure. It accurately characterizes the tool as a read-only query ('consulta') that returns JSON data from an external source (BrasilAPI/BACEN), with no mention of side effects. This is adequate for a simple read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is succinct, with front-loaded purpose and no unnecessary words. Each sentence contributes distinct value: source, output, usage scenarios, anti-patterns, and common codes. Ideal length for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (1 required parameter, no output schema), the description covers all necessary aspects: purpose, input, output format, usage guidelines, and examples. No gaps remain for an agent to misinterpret.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the parameter description in the schema already details the code format, allowed types, and examples. The description adds only redundant examples and no new semantic information beyond the schema, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the action ('consultar') and resource ('banco brasileiro pelo código COMPE/Febraban'), distinguishes from siblings by focusing on a specific query via API, and lists the returned fields (nome curto, nome completo, código, ISPB).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (user provides bank code, needs name or ISPB for PIX/TED) and when NOT to use (search by name, validate account, consult agency/account), including an alternative tool (listar_bancos) for name-based search.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_cambioA
Consulta a cotação de câmbio oficial de uma moeda estrangeira em relação ao Real (BRL) numa data, via boletins PTAX do Banco Central (BrasilAPI). Retorna em JSON os boletins do dia (ABERTURA, INTERMEDIÁRIO, FECHAMENTO) com cotação de compra e venda em BRL, paridade e data_hora_cotacao. A fonte NÃO expõe o dia corrente: com data omitida a tool consulta ontem (a cotação mais recente disponível), e em data sem pregão a API retorna os boletins do último dia útil anterior. Use quando o usuário perguntar 'quanto tá o dólar?' (retorna a cotação mais recente, do dia útil anterior), 'cotação do euro em 26/06', 'quanto fechou a libra sexta-feira' — qualquer pergunta sobre valor de moeda estrangeira em reais. NÃO use para: criptomoedas (não está nesta API), BRL (é a moeda base), série histórica (uma data por chamada), ou moedas fora das 10 suportadas — pra descobrir as moedas disponíveis use listar_moedas.
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Data da cotação no formato YYYY-MM-DD (aceita também DD/MM/YYYY). Se omitida, usa ontem (fuso de Brasília) — a fonte não expõe o dia corrente. Em data sem pregão (fim de semana, feriado) a API retorna as cotações do último dia útil anterior. | |
| moeda | Yes | Código da moeda (ISO 4217), case-insensitive. Aceitas: USD, EUR, GBP, JPY, CHF, CAD, AUD, DKK, NOK, SEK. Ex: 'USD'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
In absence of annotations, description discloses that source does not expose current day, omitted date defaults to yesterday, and non-trading days return last business day; also describes return JSON structure (ABERTURA, INTERMEDIÁRIO, FECHAMENTO with buy/sell rates). No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is front-loaded with purpose, then covers output, edge cases, usage, exclusions. Every sentence is informative and necessary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 2 parameters, 100% schema coverage, no output schema, description fully covers return format, date edge cases, supported currencies, and exclusions. Complete for a single-query currency rate tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters, but description adds context: date format, default behavior, list of ISO codes, case-insensitivity. Goes beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Consulta', resource 'cotação de câmbio oficial de uma moeda estrangeira em relação ao Real (BRL) numa data', and output format. Differentiates from sibling tools by mentioning listar_moedas for supported currencies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides use cases (e.g., quanto tá o dólar?) and non-use cases (criptomoedas, BRL, historical series, unsupported currencies). Also directs to listar_moedas for discovering available currencies.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_cepA
Consulta endereço completo a partir de um CEP brasileiro via BrasilAPI v2 (agrega ViaCEP, Postmon e outros provedores com fallback automático). Retorna em JSON: estado (UF), cidade, bairro, logradouro e, quando disponível, coordenadas geográficas. Use quando o usuário pedir o endereço de um CEP, validar um CEP, ou descobrir cidade/UF a partir de um CEP. NÃO use para: códigos postais de outros países, descobrir CEP a partir de endereço (a operação é só CEP → endereço, não inversa). Aceita CEP com ou sem hífen.
| Name | Required | Description | Default |
|---|---|---|---|
| cep | Yes | CEP brasileiro com ou sem hífen. Aceita '01310-100' ou '01310100'. Deve ter 8 dígitos. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the use of multiple providers with automatic fallback, return fields including coordinates, and input format. Lacks specifics on error handling but sufficient for a simple lookup.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is two sentences, front-loaded with purpose, and every sentence adds value. No redundancy or wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (single parameter, no output schema), the description covers purpose, usage, input format, and return fields. Complete for an agent to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% coverage for the single parameter 'cep'. The description adds value by clarifying acceptable formats (with or without hyphen, 8 digits), which is not in schema. Provides usage guidance beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool consults full addresses from Brazilian CEPs via BrasilAPI v2, with multiple providers and fallback. It explicitly distinguishes from siblings by focusing on CEPs, not other postal codes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly advises when to use: for address lookup, validation, or discovering city/state from a CEP. It also clearly states when not to use: for non-Brazilian codes or reverse lookup.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_cnpjA
Consulta dados cadastrais de uma empresa brasileira pelo CNPJ na Receita Federal (via BrasilAPI). Retorna em JSON: razão social, nome fantasia, situação cadastral (ativa/baixada/etc), data de abertura, endereço completo, CNAE principal e secundários, sócios (QSA), capital social, natureza jurídica, porte (MEI/ME/EPP/Demais), telefones, e-mail, simples nacional/MEI. Use quando o usuário pedir informações sobre uma empresa identificada por CNPJ. NÃO use para: CPF (pessoa física), empresas estrangeiras, ou validação local de formato (rejeite formato inválido sem chamar a tool). Aceita CNPJ com ou sem máscara.
| Name | Required | Description | Default |
|---|---|---|---|
| cnpj | Yes | CNPJ da empresa, com ou sem máscara. Aceita '12.345.678/0001-90' ou '12345678000190'. Deve ter 14 dígitos. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description details the return format (JSON) and lists all returned fields. It mentions the external API source (BrasilAPI) and invalid input handling. However, it does not discuss rate limits, error responses, or latency, which would improve transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficient at 4-5 sentences, front-loading purpose and usage. However, the list of return fields is a dense run-on sentence that could be structured better with bullet points or shorter sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, the description thoroughly explains the return values, input handling, and behavioral constraints. It covers all necessary aspects for a single-parameter tool, leaving no major gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, baseline 3. The description adds value by clarifying accepted formats (with/without mask, 14 digits) and provides validation guidance beyond the schema, such as rejecting invalid formats without calling the tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool consults Brazilian company data by CNPJ via BrasilAPI and lists the specific fields returned. It distinguishes from sibling tools like consultar_cep or consultar_banco by specifying it's for CNPJ only.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says when to use: when user asks for info about a company identified by CNPJ. It also states what NOT to use (CPF, foreign companies, format validation) and instructs to reject invalid format without calling the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_corretoraA
Consulta dados cadastrais de uma corretora de valores autorizada pela CVM (Comissão de Valores Mobiliários) via BrasilAPI. Retorna em JSON: CNPJ, nome social, nome comercial, status (em funcionamento, cancelada, etc), endereço completo, e-mail, telefone, data de início e patrimônio quando disponível. Use quando o usuário fornecer um CNPJ e quiser saber se é uma corretora autorizada pela CVM, ou puxar os dados cadastrais. NÃO use para: empresas em geral (use consultar_cnpj), corretoras de seguros (CVM só regula valores mobiliários), ou buscar por nome (a API só aceita CNPJ).
| Name | Required | Description | Default |
|---|---|---|---|
| cnpj | Yes | CNPJ da corretora, com ou sem máscara. 14 dígitos. Ex: '02.332.886/0011-78' (XP Investimentos). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description covers return format (JSON) and fields included. Does not mention rate limits or error handling, but sufficient for a simple query tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single paragraph with clear sections for purpose, return data, and usage guidelines. Concise but thorough, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given simple lookup with one parameter and no output schema, description is complete: explains what it does, what it returns, and when to use it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameter, description adds value by specifying format (com ou sem máscara, 14 dígitos) and providing an example, which exceeds schema description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it consults cadastral data of a securities broker authorized by CVM via BrasilAPI, specifies the resource and source, and distinguishes from sibling tools like consultar_cnpj.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides when to use (user provides CNPJ to check if authorized broker) and when not to use (for general companies, insurance brokers, or search by name), with clear alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_dddA
Lista as cidades atendidas por um código DDD brasileiro via BrasilAPI. Retorna em JSON: estado (UF) e lista de cidades que usam aquele DDD. Use quando o usuário perguntar de onde é um DDD, quais cidades um DDD cobre, ou descobrir o estado de um número de telefone. NÃO use para: validar número de telefone completo, descobrir DDD a partir de cidade (a operação só é DDD → cidades), ou consultar DDDs internacionais.
| Name | Required | Description | Default |
|---|---|---|---|
| ddd | Yes | Código DDD brasileiro (2 dígitos). Aceita string ou número. Ex: 11 (São Paulo capital), 21 (Rio), 41 (Curitiba), 71 (Salvador). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, description covers the read-only nature and return format. Minor missing details on potential errors or rate limits, but sufficient for an API lookup.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, front-loaded with main function and output, followed by usage rules. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, description explains return format. Could mention external dependency on BrasilAPI availability, but overall adequate for a simple lookup.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter 'ddd' has full schema description with examples. Description adds clarifications on accepted types (string/number) and example codes, beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists cities by DDD code via BrasilAPI and returns JSON with state and cities. It is distinct from sibling tools like consultar_cep, which handle different data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (e.g., user asks about DDD coverage) and when not to (e.g., full phone validation, reverse lookup), providing clear boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_dominio_brA
Consulta o status de registro de um domínio .br direto na base do registro.br (via BrasilAPI). Retorna em JSON: status (AVAILABLE = disponível pra registro, REGISTERED = já registrado), fqdn, hosts (servidores DNS) e expires-at quando registrado, e suggestions de extensões quando disponível. O resultado nunca é cacheado — é sempre o status atual. Use quando o usuário perguntar 'o domínio X.com.br tá livre?', 'quando expira Y.org.br?', 'quem responde pelo DNS de Z.br?'. NÃO use para: domínios internacionais .com/.net/gTLDs (a base é só .br), dados de titular/whois completo (a API não expõe), ou hospedagem/conteúdo do site.
| Name | Required | Description | Default |
|---|---|---|---|
| dominio | Yes | Domínio .br a verificar. Aceita URL completa ou domínio puro — será normalizado (remove http(s)://, www. e caminho). Ex: 'exemplo.com.br' ou 'https://www.exemplo.com.br/pagina'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that results are never cached (always current), returns specific fields, and notes what the API does not expose (titular/whois). No annotations are provided, so the description carries the full burden; it does well but could mention potential rate limits or authentication.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief (3-4 sentences) with front-loaded purpose, no redundant words, and clear bullet points for output types. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, the description fully explains return fields (status, fqdn, servers, expiry, suggestions) and covers when/not to use. It is complete for a single-parameter query tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a description, but the description adds value by explaining normalization of input (URLs, www, path removal) and acceptable formats. This goes beyond what the schema alone provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks .br domain registration status from registro.br via BrasilAPI, specifying exact purpose and output fields. It distinguishes well from sibling tools like consultar_cep or consultar_cnpj by focusing solely on .br domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides when-to-use examples ('o domínio X.com.br tá livre?') and clear exclusions: not for international domains, whois data, or hosting. This fully guides agent selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_feriadosA
Lista os feriados NACIONAIS brasileiros de um ano específico via BrasilAPI. Retorna em JSON um array com data (YYYY-MM-DD), nome do feriado e tipo (national/optional). Inclui feriados móveis calculados (Carnaval, Páscoa, Corpus Christi). Use quando o usuário perguntar quando cai um feriado, listar feriados do ano, planejar emendas/pontes, ou calcular dias úteis. NÃO use para: feriados estaduais ou municipais (a API só cobre nacionais), datas comemorativas sem dia de folga (Dia das Mães etc.), ou anos fora da faixa 1900-2199.
| Name | Required | Description | Default |
|---|---|---|---|
| ano | Yes | Ano dos feriados, 4 dígitos. Faixa aceita: 1900 a 2199. Ex: 2026. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses return format (JSON array with date, name, type), inclusion of movable holidays (Carnival, Easter, Corpus Christi), and the API source. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the main action. Every sentence provides unique value, with no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no output schema, the description covers return format, included holiday types, and usage constraints (national only, year range). Complete enough for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, baseline 3. Description reinforces the acceptable year range but adds little beyond the schema's parameter description. It does not introduce new semantic details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists national Brazilian holidays for a specific year via BrasilAPI, with a specific verb and resource. It is distinct from sibling tools (bank, CEP, CNPJ, etc.), making it unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides when to use (e.g., querying holidays, planning weekends) and when not to use (state/municipal holidays, non-holiday dates, years outside 1900-2199), with clear exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_isbnA
Consulta metadados de um livro pelo ISBN via BrasilAPI (agrega CBL, Mercado Editorial, Open Library e Google Books). Retorna em JSON: título, subtítulo, autores, editora, ano, idioma, número de páginas, assunto/categoria, sinopse (quando disponível) e fonte do dado. Use quando o usuário fornecer um ISBN e quiser saber sobre o livro (título, autor, editora, ano). NÃO use para: buscar livro por título ou autor (a operação é só ISBN → metadados), validar formato sem consultar (rejeite local se não bater 10/13 dígitos), ou consultar preço/disponibilidade. Aceita ISBN-10 e ISBN-13, com ou sem hífens.
| Name | Required | Description | Default |
|---|---|---|---|
| codigo | Yes | ISBN do livro, 10 ou 13 dígitos. Aceita com ou sem hífens. Ex: '978-85-325-3080-2' ou '9788532530802'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses it is a read operation returning JSON with specific fields (título, subtítulo, autores, etc.), aggregates multiple sources, and performs local validation of ISBN length. No annotations are present, so the description fully covers behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact (4 sentences) and front-loaded with the core purpose. Every sentence adds value: function, return info, usage cases, and exclusions. No redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool without annotations or output schema, the description covers purpose, usage, return details, and validation. It lacks explicit error handling (e.g., ISBN not found), but the coverage is otherwise comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully describes the parameter 'codigo' (type, format, example) with 100% coverage. The description adds further context about ISBN-10/ISBN-13 acceptance and validation, enhancing understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Consulta'), the resource ('metadados de um livro pelo ISBN'), and the sources (BrasilAPI, CBL, etc.), distinguishing it from sibling tools (consultar_cep, consultar_cnpj, etc.) which focus on other types of queries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit when-to-use ('quando o usuário fornecer um ISBN e quiser saber sobre o livro') and when-not-to-use (search by title/author, format validation, price/availability) are provided, guiding the agent effectively.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_municipiosA
Lista todos os municípios de uma UF brasileira com nome e código IBGE de 7 dígitos, via BrasilAPI. Retorna em JSON um array de {nome, codigo_ibge}. Atenção: estados grandes retornam listas longas (SP tem 645 municípios, ~30KB) — prefira usar só quando precisar da lista ou do código de um município. Use quando o usuário precisar do código IBGE de um município ou listar as cidades de um estado. NÃO use para: buscar um município por nome no país inteiro (a API só filtra por UF — se souber o estado, consulte-o), endereços/CEP (use consultar_cep), ou dados populacionais.
| Name | Required | Description | Default |
|---|---|---|---|
| uf | Yes | Sigla da unidade federativa, 2 letras, case-insensitive. Ex: 'SP', 'rj', 'DF'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, description carries behavioral disclosure. It warns about long lists for large states (SP: 645 items, ~30KB) and specifies return format (JSON array). Could mention error behavior or rate limits, but current info is valuable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is moderately concise with front-loaded purpose. Each sentence adds value, though some repetition could be trimmed (e.g., 'Prefira usar...' and 'Use quando...' are similar).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given simple tool (1 param, no output schema), description is comprehensive: covers purpose, input format, output structure, size warning, and exclusions. No gaps remain for competent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter 'uf' with schema covering 100% (2-letter state code). Description doesn't add extra meaning beyond schema, but schema is clear. Baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool lists municipalities by UF, providing name and 7-digit IBGE code. It distinguishes from siblings by specifying scope (list all) and not for other lookups like CEP or population.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (need IBGE code or list cities) and when not to (country-wide name search, address/CEP, population). Recommends alternative tool 'consultar_cep' for addresses.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_taxaA
Consulta o valor atual de uma taxa econômica brasileira (SELIC, CDI, IPCA) via BrasilAPI. Retorna em JSON: nome da taxa e valor atual (% ao ano). Use quando o usuário perguntar 'qual a SELIC hoje?', 'CDI atual?', 'inflação do IPCA?' — qualquer pergunta sobre o valor corrente de uma taxa específica. NÃO use para: série histórica (a API devolve só o último valor), outras taxas além de SELIC/CDI/IPCA, ou consultar dólar/bolsa (não está nesta API). Pra panorama com todas as 3 taxas use listar_taxas.
| Name | Required | Description | Default |
|---|---|---|---|
| sigla | Yes | Sigla da taxa, case-insensitive. Aceita: 'Selic' (taxa básica de juros), 'CDI' (Certificado de Depósito Interbancário), 'IPCA' (inflação oficial). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description discloses return format (JSON with name and value), limitation (only latest value, no history), and is clearly read-only. Could explicitly state 'read-only' but context makes it evident.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is 3 sentences, front-loaded with core purpose, then usage guidelines. Efficient and well-structured; slight room to be more concise (e.g., bullet points) but no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 1-param tool, description covers purpose, usage, exclusions, and return format. Could mention error handling or API reliability, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description already covers the single parameter (sigla) with values, case-insensitivity, and meanings. Description adds no new info beyond schema; baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it consults current Brazilian economic rates (SELIC, CDI, IPCA) via BrasilAPI, with specific verbs and resource. It distinguishes from sibling tool listar_taxas, which provides an overview of all three.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (user asks for current specific rate), when not to use (historical data, other rates, dollar/stock market), and alternative tool (listar_taxas for all three rates). No ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listar_bancosA
Lista TODOS os bancos brasileiros cadastrados no BACEN via BrasilAPI. Retorna em JSON um array com nome, código COMPE/Febraban e ISPB de cada instituição. Use quando o usuário quiser uma lista completa, buscar banco por nome (você filtra o resultado), ou descobrir o código de um banco específico cujo nome ele forneceu. NÃO use quando o usuário já forneceu o código numérico — nesse caso use consultar_banco que é mais barato. A lista tem ~250 entradas; cite só os relevantes na resposta.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses return format (JSON array), size (~250 entries), and suggests citing only relevant ones. Lacks rate limit or auth info but acceptable for public API.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single paragraph but well-structured: starts with purpose, then usage guidelines, then constraints. Could be more structured but effective.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description adequately explains return values (array with name, code, ISPB). Also provides size and response suggestion, making it complete for this no-param tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Zero parameters, so baseline 4. Description adds value by explaining output structure and usage beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it lists all Brazilian banks from BACEN via BrasilAPI, returning name, code, and ISPB. Differentiates from sibling tool consultar_banco for specific code.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says when to use (complete list, search by name, discover code) and when not to (if user provided numeric code, use consultar_banco which is cheaper). Provides filtering guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listar_estadosA
Lista as 27 unidades federativas do Brasil (26 estados + DF) com dados do IBGE, via BrasilAPI. Retorna em JSON um array com id (código IBGE), sigla, nome, região (Norte/Nordeste/Centro-Oeste/Sudeste/Sul) e capital de cada UF. Use quando o usuário precisar do código IBGE de um estado, agrupar estados por região, validar siglas de UF ou saber a capital. NÃO use para: municípios (use consultar_municipios), dados demográficos ou populacionais (não estão nesta API).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Although no annotations are provided, the description clearly states the source (IBGE via BrasilAPI), the output structure, and what data is not included (demographic/population). It could have mentioned idempotency or caching, but for a static list, the transparency is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is concise with no filler, front-loaded with the main action, then provides details, usage guidance, and exclusions. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and no output schema, the description fully covers what the tool does, what it returns, and when to use it. The context is complete for an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has no parameters, so description carries full burden. It adds meaning by describing the output fields and usage context, compensating for the lack of param info. No extra param details needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states it lists all 27 Brazilian states with IBGE data, returning JSON array with specific fields (id, sigla, nome, região, capital). It clearly distinguishes from sibling tools like 'consultar_municipios' by specifying it does not handle municipalities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit use cases: needing IBGE code, grouping by region, validating UF acronyms, or knowing capital. Also gives explicit negative cases: not for municipalities (refer to consultar_municipios) and not for demographic data (not in this API).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listar_moedasA
Lista as moedas estrangeiras com cotação disponível na BrasilAPI (boletins PTAX/BACEN). Retorna em JSON um array com símbolo (ISO 4217), nome e tipo de cada moeda — 10 moedas: USD, EUR, GBP, JPY, CHF, CAD, AUD, DKK, NOK, SEK. Use quando o usuário quiser saber quais moedas têm cotação disponível ou não souber o código da moeda. NÃO use para obter a cotação em si — use consultar_cambio.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses behavior: it is a read-only list operation with no parameters, returns JSON array of 10 specific currencies with symbol, name, and type. No destructive side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each essential. Front-loaded with primary purpose, then details and usage guidance. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, description explains return format (JSON array) and content (symbol, name, type) and enumerates the currencies. No parameters mean no missing parameter info. Fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so the description fully covers parameter semantics. Baseline 4 is appropriate since there is nothing to explain beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it lists foreign currencies with available quotes from BrasilAPI, lists the exact 10 currencies and output fields. Distinguishes from sibling tool consultar_cambio by explicitly stating not to use for quotes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage guidance: use when user wants to know which currencies have quotes or doesn't know the currency code; do not use for obtaining the quote itself (use consultar_cambio instead).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listar_taxasA
Lista TODAS as taxas econômicas brasileiras disponíveis na BrasilAPI (SELIC, CDI, IPCA) com seus valores atuais. Retorna em JSON um array com nome e valor (% ao ano) de cada taxa. Use quando o usuário quiser um panorama econômico, comparar SELIC vs CDI vs IPCA, ou não souber a sigla específica. NÃO use quando o usuário já sabe qual taxa quer — use consultar_taxa que é semanticamente mais direto. Hoje são só 3 taxas; o payload é pequeno.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full behavioral burden. It describes return format (JSON array with name and value), mentions payload size is small, and lists exactly 3 taxes. It doesn't mention any destructive actions (none expected). Could be improved by noting data source or update frequency, but adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Highly concise yet informative. Front-loaded with purpose, followed by usage guidance and return format. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, description explains the return structure (JSON array with name and value), lists the specific rates, and notes there are exactly 3. This is complete for a simple list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has zero parameters, and schema coverage is 100% (vacuously). Baseline for zero-param tools is 4. The description doesn't need to add parameter info, and it correctly implies no user input is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool lists all Brazilian economic rates (SELIC, CDI, IPCA) with current values. It distinguishes itself from sibling consultar_taxa by noting it returns all rates vs a specific one.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides use cases: when user wants a panoramic view or doesn't know specific rate. Also states when NOT to use (when user knows specific rate) and directs to the sibling consultar_taxa.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.2.1- Added
consultar_cambio - Added
consultar_dominio_br - Added
consultar_municipios - Added
listar_estados - Added
listar_moedas
5 tool updates
v0.2.0- Added
consultar_corretora - Added
consultar_ddd - Added
consultar_isbn - Added
consultar_taxa - Added
listar_taxas
5 tool updates
v0.1.0- First observed
consultar_banco - First observed
consultar_cep - First observed
consultar_cnpj - First observed
consultar_feriados - First observed
listar_bancos
TDQS
Each tool has a clearly distinct purpose: bank, address, company, stockbroker, area code, holidays, book, economic rates, with list tools for overview. No two tools overlap in functionality.
All tools follow a consistent verb_noun pattern in Portuguese, using 'consultar_' for single queries and 'listar_' for lists. No mixing of cases or styles.
10 tools is well-scoped for a data look-up service covering multiple Brazilian datasets. Each tool serves a unique purpose without overloading the user.
The tools cover common queries (bank, CEP, CNPJ, etc.) with both individual and list endpoints. A notable gap is the absence of a CPF lookup, which is a frequent need for Brazilian data, but the set is otherwise solid.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Brazilian Open Finance MCP — 30+ banks (Itaú, Nubank, etc.) to Claude/Cursor. Read-only.
- QuallaaOAuthcom.quallaa
Talk to your public-facing AI from any MCP client — Claude, ChatGPT, Cursor, Cline, Windsurf.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP Server for accessing 36 Brazilian public data sources and 1 agent, enabling AI agents to query government data on economy, legislation, transparency, judiciary, elections, environment, health, and more.MIT
- FlicenseNot gradedqualityBmaintenanceSelf-hosted MCP connector for querying Brazilian legal jurisprudence via JurisprudenciaIA. Enables natural language legal research using Claude.ai, with tools for consulting, searching, and comparing jurisprudence and legal theses.12-
- AlicenseNot gradedqualityDmaintenanceMCP server that connects AI agents to 28 Brazilian public APIs, providing tools to query government data on economy, legislation, transparency, judiciary, elections, environment, health, and more.MIT
- FlicenseNot gradedqualityCmaintenanceRead-only MCP server for connecting to Pluggy Open Finance Brasil, exposing accounts, balances, transactions, and investments to Claude agents.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alanpcf/brasil-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server