openfinance for VS Code
io.github.openfinanceorg/openfinance
Connect your financial accounts to view balances, search transactions, and get spending insights.
client:VS Code
transport:stdio
runtime:npm
Install openfinance in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openfinance-api-key",
"description": "OPENFINANCE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openfinance-url",
"description": "OPENFINANCE_URL",
"password": true
}
],
"servers": {
"openfinance": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@openfinance-sh/mcp"
],
"env": {
"OPENFINANCE_API_KEY": "${input:openfinance-api-key}",
"OPENFINANCE_URL": "${input:openfinance-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs