The Developer MCP is built for developer tools like Claude Code, Codex, OpenCode, Cursor, and VS Code. It isn't available in the Claude app yet.
The Developer MCP exposes this developer portal through the Model Context Protocol (MCP), and once connected, your AI assistant can:
- Scaffold your integration using working code examples and best practices from this portal
- Explain what a specific API error means and how to resolve it
- Browse the structure of Belvo's API reference
- Look up a specific endpoint's parameters, request body, and responses
- Read authentication and security scheme details
- Search this documentation site's content
This means you can ask your assistant questions like "Which endpoint retrieves transactions for a Link?" or "What security scheme does the Payments API use?" and it can answer directly from Belvo's official docs.
No authentication is required. The Developer MCP is public, the same as this developer portal.
The Developer MCP only exposes this public developer portal. It can't access your Belvo account, credentials, or any customer data, and it can't make API calls on your behalf. We're actively expanding what the Developer MCP can do, so check back for updates.
If your client is Cursor or VS Code, use the button below to connect directly, or copy the server configuration to paste into any other client:
- Connect to CursorInstall MCP server on Cursor
- Connect to VS CodeInstall MCP server on VS Code
- Copy MCP ConfigurationCopy MCP JSON Configuration
For clients without a one-click option, add the server manually using its URL:
https://developers.belvo.com/mcpRun the following command in your terminal:
claude mcp add --transport http belvo-docs https://developers.belvo.com/mcpAlternatively, add it directly to your project's .mcp.json:
{
"mcpServers": {
"belvo-docs": {
"type": "http",
"url": "https://developers.belvo.com/mcp"
}
}
}Found an issue with the Developer MCP? Let us know using the feedback widget below, and include your email in the comment so we can follow up.