Skip to content
VS Code

mcp adyen for VS Code

io.github.codespar/mcp-adyen

MCP server for Adyen Checkout API v71 — enterprise payments (iFood, Uber, Spotify in LatAm)

client:VS Code transport:stdio runtime:npm

Install mcp adyen in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "adyen-api-key",
      "description": "ADYEN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adyen-merchant-account",
      "description": "ADYEN_MERCHANT_ACCOUNT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adyen-env",
      "description": "ADYEN_ENV",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adyen-live-url-prefix",
      "description": "ADYEN_LIVE_URL_PREFIX",
      "password": true
    }
  ],
  "servers": {
    "mcp-adyen": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-adyen"
      ],
      "env": {
        "ADYEN_API_KEY": "${input:adyen-api-key}",
        "ADYEN_MERCHANT_ACCOUNT": "${input:adyen-merchant-account}",
        "ADYEN_ENV": "${input:adyen-env}",
        "ADYEN_LIVE_URL_PREFIX": "${input:adyen-live-url-prefix}"
      }
    }
  }
}

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

mcp adyen in other clients