Skip to content
VS Code

MuPag Sandbox Payments for VS Code

br.com.mupag/mcp-server

Sandbox-only MuPag MCP server for approved payments, subscriptions, refunds, and reconciliation.

client:VS Code transport:stdio runtime:npm

Install MuPag Sandbox Payments in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mupag-api-key",
      "description": "MUPAG_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mupag-env",
      "description": "MUPAG_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mupag/mcp-server"
      ],
      "env": {
        "MUPAG_API_KEY": "${input:mupag-api-key}",
        "MUPAG_ENV": "${input:mupag-env}"
      }
    }
  }
}

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

MuPag Sandbox Payments in other clients