Argentine Central Bank open data: official and parallel exchange rates, monetary stats, and financial indicators. No auth required.
BCRA gives your agent 16 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
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-bcraAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"bcra": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bcra"
],
"env": {}
}
}
}After restart, your agent can call any of the 16 tools below — try get_exchange_rates first.
Each tool is independent — your agent loads only what it needs to reduce context and response time.
get_exchange_rateslist_currenciesget_official_rateget_currency_historylist_variablesget_variable_historyget_uva_valueget_monetary_baseMCP is a protocol — any framework that speaks it can mount this server.