Brazilian public data: CEP lookup, CNPJ validation, bank codes, FIPE vehicle prices, holidays, and tax tables. No auth required.
Brasil API gives your agent 24 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
get_cep β Look up address by CEP (Brazilian postal code)get_cnpj β Look up company information by CNPJget_banks β List all Brazilian banks with codes and names// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("get_cep", { /* ... */ });$ npm install @codespar/mcp-brasil-apiAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"brasil-api": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-brasil-api"
],
"env": {}
}
}
}After restart, your agent can call any of the 24 tools below β try get_cep first.
Each tool is independent β your agent loads only what it needs to reduce context and response time.
get_cepget_cnpjget_banksget_holidaysget_fipe_brandsget_fipe_priceget_dddget_isbnMCP is a protocol β any framework that speaks it can mount this server.