Digital banking with Pix, boleto, statements, and transfers. Your agent manages cash flow and automates receivables via Inter's API.
Banco Inter gives your agent 22 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
create_boleto β Create a boleto bancario (bank slip)get_boleto β Get boleto details by IDlist_boletos β List boletos with filters// 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("create_boleto", { /* ... */ });$ npm install @codespar/mcp-inter-bankAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"inter-bank": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-inter-bank"
],
"env": {
"INTER_CLIENT_ID": "<your_inter_client_id>"
}
}
}
}After restart, your agent can call any of the 22 tools below β try create_boleto first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
INTER_CLIENT_IDAPI key/token for inter-bank
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_boletoget_boletolist_boletoscancel_boletoget_boleto_pdfcreate_pixget_pixlist_pixMCP is a protocol β any framework that speaks it can mount this server.