mcp server for VS Code
eu.wealthapi/mcp-server
Read-only MCP server for wealthAPI: portfolio, cash-flow, and dividend insights for AI assistants.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bearer-token",
"description": "BEARER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@wealth_api/mcp-server"
],
"env": {
"BEARER_TOKEN": "${input:bearer-token}",
"LOG_LEVEL": "${input:log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs