Skip to content
VS Code

mcp izipay for VS Code

io.github.codespar/mcp-izipay

MCP server for Izipay — Peru enterprise acquirer (Niubiz): authorize/capture/refund, cuotas

client:VS Code transport:stdio runtime:npm

Install mcp izipay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "izipay-username",
      "description": "IZIPAY_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "izipay-password",
      "description": "IZIPAY_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "izipay-merchant-code",
      "description": "IZIPAY_MERCHANT_CODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "izipay-env",
      "description": "IZIPAY_ENV",
      "password": true
    },
    {
      "type": "promptString",
      "id": "izipay-base-url",
      "description": "IZIPAY_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-izipay": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-izipay"
      ],
      "env": {
        "IZIPAY_USERNAME": "${input:izipay-username}",
        "IZIPAY_PASSWORD": "${input:izipay-password}",
        "IZIPAY_MERCHANT_CODE": "${input:izipay-merchant-code}",
        "IZIPAY_ENV": "${input:izipay-env}",
        "IZIPAY_BASE_URL": "${input:izipay-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 izipay in other clients