Skip to content
VS Code

mcp bradesco for VS Code

io.github.codespar/mcp-bradesco

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

client:VS Code transport:stdio runtime:npm

Install mcp bradesco in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bradesco-client-id",
      "description": "BRADESCO_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bradesco-client-secret",
      "description": "BRADESCO_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bradesco-cert-path",
      "description": "BRADESCO_CERT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bradesco-key-path",
      "description": "BRADESCO_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bradesco-env",
      "description": "BRADESCO_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-bradesco": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-bradesco"
      ],
      "env": {
        "BRADESCO_CLIENT_ID": "${input:bradesco-client-id}",
        "BRADESCO_CLIENT_SECRET": "${input:bradesco-client-secret}",
        "BRADESCO_CERT_PATH": "${input:bradesco-cert-path}",
        "BRADESCO_KEY_PATH": "${input:bradesco-key-path}",
        "BRADESCO_ENV": "${input:bradesco-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 bradesco in other clients