Open Finance aggregator for LatAm: bank connections, transaction enrichment, and income verification across Brazil, Mexico, and Colombia.
Belvo gives your agent 24 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
list_institutions β List available financial institutionscreate_link β Create a link to a financial institutionlist_links β List existing links// 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("list_institutions", { /* ... */ });$ npm install @codespar/mcp-belvoAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"belvo": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-belvo"
],
"env": {
"BELVO_SECRET_ID": "<your_belvo_secret_id>",
"BELVO_SECRET_PASSWORD": "<your_belvo_secret_password>"
}
}
}
}After restart, your agent can call any of the 24 tools below β try list_institutions first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
BELVO_SECRET_IDSecret ID for Belvo
BELVO_SECRET_PASSWORDSecret password for Belvo
BELVO_SANDBOXSet to true to use sandbox environment
Each tool is independent β your agent loads only what it needs to reduce context and response time.
list_institutionscreate_linklist_linksget_accountsget_balancesget_transactionsget_ownersget_incomesMCP is a protocol β any framework that speaks it can mount this server.