Skip to content
VS Code

mcp pagbrasil for VS Code

io.github.codespar/mcp-pagbrasil

PagBrasil — cross-border acquiring into Brazil: Pix, Boleto Flash, refunds

client:VS Code transport:stdio runtime:npm

Install mcp pagbrasil in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pagbrasil-pbtoken",
      "description": "PAGBRASIL_PBTOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pagbrasil-secret",
      "description": "PAGBRASIL_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pagbrasil-base-url",
      "description": "PAGBRASIL_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-pagbrasil": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-pagbrasil"
      ],
      "env": {
        "PAGBRASIL_PBTOKEN": "${input:pagbrasil-pbtoken}",
        "PAGBRASIL_SECRET": "${input:pagbrasil-secret}",
        "PAGBRASIL_BASE_URL": "${input:pagbrasil-base-url}"
      }
    }
  }
}

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

mcp pagbrasil in other clients