Skip to content
VS Code

mcp banco inter for VS Code

io.github.samuelmoraesf/mcp-banco-inter

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

client:VS Code transport:stdio runtime:npm

Install mcp banco inter in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "client-id",
      "description": "CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "client-secret",
      "description": "CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cert-path",
      "description": "CERT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "key-path",
      "description": "KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x-conta-corrente",
      "description": "X_CONTA_CORRENTE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "storage-path",
      "description": "STORAGE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "inter-is-sandbox",
      "description": "INTER_IS_SANDBOX",
      "password": true
    }
  ],
  "servers": {
    "mcp-banco-inter": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-banco-inter"
      ],
      "env": {
        "CLIENT_ID": "${input:client-id}",
        "CLIENT_SECRET": "${input:client-secret}",
        "CERT_PATH": "${input:cert-path}",
        "KEY_PATH": "${input:key-path}",
        "X_CONTA_CORRENTE": "${input:x-conta-corrente}",
        "STORAGE_PATH": "${input:storage-path}",
        "INTER_IS_SANDBOX": "${input:inter-is-sandbox}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp banco inter in other clients