Skip to content
VS Code

interbanking for VS Code

io.github.rje1974/interbanking

Saldos y movimientos bancarios de Interbanking (Argentina). Solo lectura.

client:VS Code transport:stdio runtime:npm

Install interbanking in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ib-client-id",
      "description": "IB_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ib-client-secret",
      "description": "IB_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ib-redirect-url",
      "description": "IB_REDIRECT_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ib-customer-id",
      "description": "IB_CUSTOMER_ID",
      "password": true
    }
  ],
  "servers": {
    "interbanking": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "interbanking-mcp"
      ],
      "env": {
        "IB_CLIENT_ID": "${input:ib-client-id}",
        "IB_CLIENT_SECRET": "${input:ib-client-secret}",
        "IB_REDIRECT_URL": "${input:ib-redirect-url}",
        "IB_CUSTOMER_ID": "${input:ib-customer-id}"
      }
    }
  }
}

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

interbanking in other clients