Skip to main content
IN

Banco Inter

v0.2.1OAuth2

Digital banking with Pix, boleto, statements, and transfers. Your agent manages cash flow and automates receivables via Inter's API.

22 tools1 env varsπŸ‡§πŸ‡· Brazilstable on npm

What your agent can do

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 ID
  • list_boletos β€” List boletos with filters
Example call
// 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", { /* ... */ });

Install

terminal
$ npm install @codespar/mcp-inter-bank

Quickstart

Add this entry to your claude_desktop_config.json (or any MCP-compatible client config).

claude_desktop_config.json
{
  "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.

Environment variables Β· 1

Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.

INTER_CLIENT_ID
requiredsecret

API key/token for inter-bank

Available tools Β· 22

Each tool is independent β€” your agent loads only what it needs to reduce context and response time.

WRITEcreate_boleto
Create a boleto bancario (bank slip)
READget_boleto
Get boleto details by ID
READlist_boletos
List boletos with filters
DELETEcancel_boleto
Cancel (write-off) a boleto
READget_boleto_pdf
Download boleto PDF (returns base64 payload)
WRITEcreate_pix
Create a PIX payment
READget_pix
Get PIX transaction details by ID
READlist_pix
List PIX transactions

Compatible frameworks

MCP is a protocol β€” any framework that speaks it can mount this server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Any MCP clientProtocol

Frequently asked questions

Run `npx -y @codespar/mcp-inter-bank` and add the config block above to your MCP client β€” Claude, Cursor, VS Code, or any MCP-compatible client. No build step, no SDK required. Prefer hosted? CodeSpar's managed tier runs it for you with auth handled.
Banco Inter β€” MCP server Β· 22 tools | CodeSpar