Skip to content
VS Code

mcp caixa for VS Code

io.github.codespar/mcp-caixa

MCP server for Caixa Econômica Federal — Pix, Cobrança (SICOB boleto), Extrato (OAuth2 + mTLS)

client:VS Code transport:stdio runtime:npm

Install mcp caixa in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "caixa-client-id",
      "description": "CAIXA_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "caixa-client-secret",
      "description": "CAIXA_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "caixa-cert-path",
      "description": "CAIXA_CERT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "caixa-key-path",
      "description": "CAIXA_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "caixa-env",
      "description": "CAIXA_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-caixa": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-caixa"
      ],
      "env": {
        "CAIXA_CLIENT_ID": "${input:caixa-client-id}",
        "CAIXA_CLIENT_SECRET": "${input:caixa-client-secret}",
        "CAIXA_CERT_PATH": "${input:caixa-cert-path}",
        "CAIXA_KEY_PATH": "${input:caixa-key-path}",
        "CAIXA_ENV": "${input:caixa-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 caixa in other clients