Skip to content
VS Code

mcp payway for VS Code

io.github.codespar/mcp-payway

Payway (ex-Decidir) — Argentina card acquiring: tokenize, charge, capture, refund

client:VS Code transport:stdio runtime:npm

Install mcp payway in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "payway-public-api-key",
      "description": "PAYWAY_PUBLIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "payway-private-api-key",
      "description": "PAYWAY_PRIVATE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "payway-env",
      "description": "PAYWAY_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-payway": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-payway"
      ],
      "env": {
        "PAYWAY_PUBLIC_API_KEY": "${input:payway-public-api-key}",
        "PAYWAY_PRIVATE_API_KEY": "${input:payway-private-api-key}",
        "PAYWAY_ENV": "${input:payway-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 payway in other clients