Datos abiertos del Banco Central de Argentina: cotizaciones de cambio oficial y paralelo, estadísticas monetarias e indicadores financieros. Sin auth.
BCRA le da a tu agente 16 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier 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-bcraAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"bcra": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bcra"
],
"env": {}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 16 herramientas de abajo — probá get_exchange_rates primero.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
get_exchange_rateslist_currenciesget_official_rateget_currency_historylist_variablesget_variable_historyget_uva_valueget_monetary_baseMCP es un protocolo — cualquier framework que lo hable puede montar este server.