Skip to content
VS Code

mcp santander for VS Code

io.github.codespar/mcp-santander

MCP server for Santander Brasil — Pix, Cobrança (boleto), Arrecadação, Extrato (OAuth2 + mTLS)

client:VS Code transport:stdio runtime:npm

Install mcp santander in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "santander-client-id",
      "description": "SANTANDER_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "santander-client-secret",
      "description": "SANTANDER_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "santander-cert-path",
      "description": "SANTANDER_CERT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "santander-key-path",
      "description": "SANTANDER_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "santander-env",
      "description": "SANTANDER_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-santander": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-santander"
      ],
      "env": {
        "SANTANDER_CLIENT_ID": "${input:santander-client-id}",
        "SANTANDER_CLIENT_SECRET": "${input:santander-client-secret}",
        "SANTANDER_CERT_PATH": "${input:santander-cert-path}",
        "SANTANDER_KEY_PATH": "${input:santander-key-path}",
        "SANTANDER_ENV": "${input:santander-env}"
      }
    }
  }
}

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

mcp santander in other clients