interbanking-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@interbanking-mcp¿Cuánto tengo en cada cuenta?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
interbanking-mcp
Servidor MCP para consultar tus cuentas de Interbanking (Argentina) desde un agente: saldos, saldos históricos y movimientos, en castellano y sin escribir código.
Es de solo lectura. No hay ninguna herramienta que mueva plata, y eso no es una convención sino una decisión de diseño: la función genérica del cliente —la que acepta cualquier método HTTP— queda deliberadamente afuera del servidor.
Instalación
No hace falta instalar nada: se descarga solo al arrancar.
Claude Code
claude mcp add interbanking \
--env IB_CLIENT_ID=tu_client_id \
--env IB_CLIENT_SECRET=tu_client_secret \
--env IB_REDIRECT_URL=https://localhost \
--env IB_CUSTOMER_ID=tu_customer_id \
-- npx -y interbanking-mcpClaude Desktop u otro cliente con archivo de configuración
{
"mcpServers": {
"interbanking": {
"command": "npx",
"args": ["-y", "interbanking-mcp"],
"env": {
"IB_CLIENT_ID": "tu_client_id",
"IB_CLIENT_SECRET": "tu_client_secret",
"IB_REDIRECT_URL": "https://localhost",
"IB_CUSTOMER_ID": "tu_customer_id"
}
}
}
}Las credenciales salen del portal de desarrolladores de Interbanking. Cómo obtenerlas, paso a paso, está en interbanking-api-ejemplo.
Ojo con dónde quedan las credenciales. Ese archivo de configuración es texto plano en tu disco. Antes de pegarlas ahí, leé gestión de tokens.
Related MCP server: Itaú MCP
Herramientas
Herramienta | Qué hace |
| Las cuentas disponibles con banco, tipo, moneda y número |
| Saldos actuales: contable y operativo. Rango opcional de hasta 64 días |
| Saldos día por día en rangos largos; parte el rango solo |
| Movimientos de todas las cuentas, con totales de créditos y débitos |
Una vez configurado, se le habla en castellano:
"¿Cuánto tengo en cada cuenta?"
"Mostrame los movimientos de septiembre"
"¿Cómo evolucionó el saldo del Galicia desde enero?"
"¿Qué transferencias entraron la semana pasada?"
Sobre el volumen de datos
movimientos y saldos_historicos devuelven un resumen por defecto: totales por
cuenta y los 25 movimientos más recientes. Un rango de un año son miles de registros, y
volcarlos enteros llena la ventana de contexto del agente sin que nadie gane nada. Para
ver todo, pedirle "con detalle", y mejor sobre rangos cortos.
Qué hay abajo
Usa interbanking-client, que
resuelve los quirks del portal: los parámetros del token van en la query string y no en
el body, el header service tiene que incluir https://, customer-id va como query
parameter, y movimientos usa una URL base distinta a saldos. Todos están documentados en
interbanking-api-ejemplo.
Desarrollo
npm install
npm run check
npm testPara probarlo a mano:
npx @modelcontextprotocol/inspector node server.jsLicencia
MIT
Available Tools
4 toolslistar_cuentasListar cuentasA
Lista las cuentas bancarias disponibles con su banco, tipo, moneda y numero. Util como primer paso para saber que cuentas existen antes de pedir movimientos.
| 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 carries the full behavioral burden and it does disclose the read-only, enumerative nature plus the returned fields. However it says nothing about permissions, whether the list is filtered by the caller's account access, or any rate/volume constraints, so an agent cannot tell how complete the listing will be.
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?
Two short sentences, front-loaded with what the tool returns and followed immediately by when to reach for it. Every clause earns its place with no filler.
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 exists, so the description usefully enumerates the returned fields, and for a zero-parameter read tool there is little else to specify. It is close to complete, though an agent still lacks any statement about scoping or authorization of the returned accounts.
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 tool takes zero parameters, so the baseline is 4. The description does not need to explain any input semantics and correctly introduces none.
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?
States a specific verb+resource ('Lista las cuentas bancarias disponibles') and enumerates the fields returned (banco, tipo, moneda, numero), which is more than a tautology of the title. It implicitly separates itself from 'movimientos' by positioning itself as the prior step, but it never names any sibling tool explicitly.
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?
'Util como primer paso para saber que cuentas existen antes de pedir movimientos' gives clear usage context and even points at the natural follow-up action. It does not state exclusions or reference the actual sibling names ('saldos', 'saldos_historicos', 'movimientos'), so routing is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
movimientosConsultar movimientosA
Movimientos de todas las cuentas en un rango de fechas. Descubre las cuentas solo. Por defecto devuelve un resumen (totales por cuenta y los 25 mas recientes); pedir detalle solo para rangos cortos, porque un rango largo son miles de registros.
| Name | Required | Description | Default |
|---|---|---|---|
| tipo | No | Tipo de movimiento. Default: anteriores | |
| desde | Yes | Fecha desde (YYYY-MM-DD) | |
| hasta | Yes | Fecha hasta (YYYY-MM-DD) | |
| detalle | No | Si es true, lista todos los movimientos en vez del resumen. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the load and does disclose real behavior: it auto-discovers accounts, defaults to a summary (per-account totals plus the 25 most recent), and warns about volume for long ranges. It omits permissions/rate-limit context, but the default-vs-detail behavior is well covered.
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?
Two tight sentences, front-loaded with the resource and scope, then the default behavior, then the caution. Every clause earns its place.
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 exists, yet the description explains the return shape (totals per account plus 25 most recent) and the volume tradeoff, so an agent can call it correctly. Minor gaps remain around the tipo enum semantics and any account filtering, but the essentials are present.
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%, so baseline is 3, but the description adds meaning beyond the schema for 'detalle' by explaining what the default summary actually contains and when switching to detail is unwise. The 'tipo' enum and its default are left entirely to 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?
States a specific verb+resource: transactions ('movimientos') across all accounts within a date range, and notes it auto-discovers accounts. Clear enough to distinguish from siblings like saldos or listar_cuentas, though it never names them explicitly.
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?
Gives a concrete condition for using the detail mode: request detail only for short ranges because long ranges return thousands of records. It does not, however, contrast with sibling tools (saldos, saldos_historicos) to help the agent pick between them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
saldosConsultar saldosA
Saldos actuales de todas las cuentas: contable, operativo y proyectado. Acepta un rango de fechas opcional de hasta 64 dias; para rangos mas largos usar saldos_historicos.
| Name | Required | Description | Default |
|---|---|---|---|
| desde | No | Fecha desde (YYYY-MM-DD), opcional | |
| hasta | No | Fecha hasta (YYYY-MM-DD), opcional | |
| moneda | No | Filtrar por moneda |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries the full burden. It discloses a genuine behavioral constraint (64-day maximum range) and the scope of returned balances (three account types), which is real, non-obvious context. It stops short of richer disclosure like read-only nature or response shape, keeping it out of the top band.
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?
Two tight sentences, front-loaded with the resource and balance types, then the range limit and the alternative. Every clause earns its place with no filler.
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 three-parameter, non-mutating query with no output schema, the definition covers the essential constraints and routing guidance. The only gap is the absence of return-shape hints, which is acceptable given the tool's simplicity.
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 coverage is 100%, so desde, hasta and moneda are already documented with format and enum. The description only adds the 64-day limit that binds the date parameters, which is mild value beyond the schema and consistent with the baseline 3 when the schema does the heavy lifting.
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?
States a specific resource (current balances across all accounts) and even enumerates the three balance types (contable, operativo, proyectado). It explicitly contrasts itself with the sibling saldos_historicos, so an agent can route correctly without opening either schema.
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?
Names the alternative (saldos_historicos) together with the exact condition that selects it: date ranges longer than 64 days. The optional range for this tool is stated with its bound, leaving nothing to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
saldos_historicosSaldos historicosA
Saldos diarios en un rango de fechas largo. Parte el rango automaticamente en tramos de 60 dias porque la API no acepta mas de 64 por consulta, y devuelve la serie unificada. Devuelve un resumen por cuenta; usar detalle para la serie dia por dia.
| Name | Required | Description | Default |
|---|---|---|---|
| desde | Yes | Fecha desde (YYYY-MM-DD) | |
| hasta | Yes | Fecha hasta (YYYY-MM-DD) | |
| detalle | No | Si es true, devuelve el saldo de cada dia. Puede ser mucho texto. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and discloses meaningful behavior: automatic splitting into 60-day chunks due to the API's 64-day limit, unified series return, and summary vs. day-by-day modes. It still omits read-only status, auth requirements, and error 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?
Three sentences, front-loaded with the purpose, then the chunking behavior, then return-mode guidance. Every sentence is useful and there is no redundant filler.
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?
Without an output schema, the description does explain that it returns a summary per account by default and a daily series when detalle is true. It also explains automatic chunking, but lacks detailed output fields, auth, and error-handling context.
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%, so the schema already documents all three parameters. The description restates the detalle meaning and adds that it returns the day-by-day series, but adds no syntax or constraints 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?
States a specific resource (saldos diarios) and scope (rango de fechas largo), so the agent knows this retrieves historical daily balances. However, it does not explicitly differentiate this tool from the sibling saldos or movimientos tools.
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 phrase 'rango de fechas largo' implies when to use this tool, and 'usar detalle para la serie dia por dia' guides parameter choice. There is no explicit when-not guidance or comparison to sibling tools such as saldos or movimientos.
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.
4 tool updates
v1.0.1- First observed
listar_cuentas - First observed
movimientos - First observed
saldos - First observed
saldos_historicos
TDQS
Scored across 4 tools
Each tool targets a distinct facet: listing accounts, current balances, historical daily balances, and movements. The descriptions explicitly clarify the boundary between saldos and saldos_historicos by date-range length, so an agent can select correctly.
listar_cuentas follows a verb_noun pattern, while saldos, saldos_historicos, and movimientos are noun phrases. The names are all snake_case and readable, but they do not follow one predictable convention.
Four tools are well-scoped for a read-only banking information surface. Each tool earns its place by covering a separate capability: account discovery, current balances, historical balances, and movements.
The surface covers the core read-only workflows: accounts, balances, historical balances, and movements. Minor gaps exist, such as no explicit account-filtered movement or balance query, but agents can work around them using the all-accounts responses.
Maintenance
Related MCP Connectors
Chat with your bank data: balances, transactions, budgets, bills. Reads only, never moves money.
Connect your Inter account to AI via Brazil's Open Finance: balances, statements, cards, investments
Read-only bank access for your AI agent. Connects Claude, ChatGPT, Cursor, Gemini, Codex.
Read-only access to your bank, investment, and crypto accounts: balances, transactions, holdings.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables querying Up Bank account transactions and spending habits through natural language, using the Up Bank API in read-only mode.9 npm8Do What The F*ck You Want To Public
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to read Itaú bank account information (balances, statements, credit card bills, investments) via Open Finance Brasil, read-only.MIT
- AlicenseNot gradedqualityDmaintenanceConnects InfinitePay accounts via Open Finance Brasil to query balances, statements, credit card bills, investments, and loans using natural language through any MCP client. Read-only and LGPD compliant.MIT
- AlicenseNot gradedqualityDmaintenanceConnects your Inter bank account to AI assistants via Open Finance Brasil, enabling read-only queries about balances, statements, credit card bills, and investments in natural language.MIT