Skip to content
VS Code

mcp wise for VS Code

io.github.codespar/mcp-wise

MCP server for Wise — multi-currency accounts, FX, international transfers, quotes, recipients

client:VS Code transport:stdio runtime:npm

Install mcp wise in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wise-api-token",
      "description": "WISE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wise-env",
      "description": "WISE_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-wise": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-wise"
      ],
      "env": {
        "WISE_API_TOKEN": "${input:wise-api-token}",
        "WISE_ENV": "${input:wise-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 wise in other clients