Skip to content
VS Code

Wise for VS Code

io.github.mindstone/mcp-server-wise

Wise (formerly TransferWise) MCP server for Model Context Protocol hosts

client:VS Code transport:stdio runtime:npm

Install Wise in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wise-api-token",
      "description": "WISE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wise-environment",
      "description": "WISE_ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wise-request-timeout-ms",
      "description": "WISE_REQUEST_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-wise": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-wise"
      ],
      "env": {
        "WISE_API_TOKEN": "${input:wise-api-token}",
        "WISE_ENVIRONMENT": "${input:wise-environment}",
        "WISE_REQUEST_TIMEOUT_MS": "${input:wise-request-timeout-ms}"
      }
    }
  }
}

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

Wise in other clients