Skip to content
VS Code

mcp airwallex for VS Code

io.github.codespar/mcp-airwallex

MCP server for Airwallex — cross-border collection + payouts, global accounts, FX, transfers

client:VS Code transport:stdio runtime:npm

Install mcp airwallex in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "airwallex-client-id",
      "description": "AIRWALLEX_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "airwallex-api-key",
      "description": "AIRWALLEX_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "airwallex-env",
      "description": "AIRWALLEX_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-airwallex": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-airwallex"
      ],
      "env": {
        "AIRWALLEX_CLIENT_ID": "${input:airwallex-client-id}",
        "AIRWALLEX_API_KEY": "${input:airwallex-api-key}",
        "AIRWALLEX_ENV": "${input:airwallex-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 airwallex in other clients