mcp server wise for VS Code
io.github.aiwerk/mcp-server-wise
Wise Personal API: profiles, balances, multi-currency rates, transfers, recipients (read-only).
client:VS Code
transport:stdio
runtime:npm
Install mcp server wise in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wise-api-token",
"description": "WISE_API_TOKEN",
"password": true
}
],
"servers": {
"mcp-server-wise": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-wise"
],
"env": {
"WISE_API_TOKEN": "${input:wise-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs