MCP Banco Inter MCP Server

Servidor MCP para integração com o Banco Inter (PJ). Consulte saldos e gerencie cobranças.

Local serverstdioTypeScript

What is the MCP Banco Inter MCP server?

Connect MCP Banco Inter to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Servidor MCP para integração com o Banco Inter (PJ). Consulte saldos e gerencie cobranças. The mcp banco inter mcp server is what makes that connection.

What the server does

Um servidor MCP (Model Context Protocol) para integração com a API do Banco Inter Empresas (PJ).

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Transporte — Uso
  • Ferramenta — Descrição
  • consultar_saldo — Retorna o saldo disponível da conta
  • consultar_extrato — Retorna as movimentações em um período
  • baixar_pdf_extrato — Gera e salva o PDF do extrato
  • listar_boletos — Lista cobranças por período e situação
  • emitir_boleto — Cria um novo boleto de cobrança
  • baixar_pdf_boleto — Gera e salva o PDF de um boleto
  • cancelar_boleto — Cancela uma cobrança existente
  • sumario_boletos — Resumo quantitativo de cobranças por período
  • Banking — The Banking tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: CLIENT_ID, CLIENT_SECRET, CERT_PATH, KEY_PATH, X_CONTA_CORRENTE, INTER_IS_SANDBOX, STORAGE_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

The server ships on npm as samuelmoraesf/mcp-banco-inter, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Banco Inter's toolset — Transporte, Ferramenta, consultar_saldo and 8 more — is a fair guide to whether it matches your workflow. It is maintained by samuelmoraesf; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP Banco Inter.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
TransporteUso
FerramentaDescrição
consultar_saldoRetorna o saldo disponível da conta.
consultar_extratoRetorna as movimentações em um período.
baixar_pdf_extratoGera e salva o PDF do extrato.
listar_boletosLista cobranças por período e situação.
emitir_boletoCria um novo boleto de cobrança.
baixar_pdf_boletoGera e salva o PDF de um boleto.
cancelar_boletoCancela uma cobrança existente.
sumario_boletosResumo quantitativo de cobranças por período.
BankingThe Banking tool exposed by this server.

How to install the MCP Banco Inter MCP server

{
  "mcpServers": {
    "banco-inter": {
      "command": "npx",
      "args": ["-y", "samuelmoraesf/mcp-banco-inter"],
      "env": {
        "CLIENT_ID": "your-value",
        "CLIENT_SECRET": "your-value",
        "CERT_PATH": "your-value",
        "KEY_PATH": "your-value",
        "X_CONTA_CORRENTE": "your-value",
        "INTER_IS_SANDBOX": "your-value",
        "STORAGE_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
CLIENT_IDConfiguration value read at startup.Optional
CLIENT_SECRETCredential the server authenticates with.Yes
CERT_PATHFilesystem location the server is allowed to use.Optional
KEY_PATHCredential the server authenticates with.Yes
X_CONTA_CORRENTEConfiguration value read at startup.Optional
INTER_IS_SANDBOXConfiguration value read at startup.Optional
STORAGE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use MCP Banco Inter to Transporte.
  • Use MCP Banco Inter to Ferramenta.
  • Use MCP Banco Inter to consultar saldo.

Frequently asked questions

It connects MCP Banco Inter to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (Transporte, Ferramenta, consultar_saldo, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Banco Inter directly.