Dados abertos do Banco Central da Argentina: cotações de câmbio oficial e paralelo, estatísticas monetárias e indicadores financeiros. Sem auth.
O BCRA dá ao seu agente 16 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.
get_exchange_rates — Get official exchange rates snapshot for a date (USD, EUR, BRL, etc.)list_currencies — List the master catalog of currencies (divisas) tracked by BCRAget_official_rate — Get the official BCRA quote for a single currency on a specific date// 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_exchange_rates", { /* ... */ });$ npm install @codespar/mcp-bcraAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"bcra": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bcra"
],
"env": {}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 16 ferramentas abaixo — teste get_exchange_rates primeiro.
Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
get_exchange_rateslist_currenciesget_official_rateget_currency_historylist_variablesget_variable_historyget_uva_valueget_monetary_baseMCP é um protocolo — qualquer framework que o fale pode montar este server.