quicken mac mcp for VS Code
io.github.dweekly/quicken-mac-mcp
Read-only access to Quicken For Mac financial data: transactions, spending, and portfolios.
client:VS Code
transport:stdio
runtime:npm
Install quicken mac mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "quicken-db-path",
"description": "QUICKEN_DB_PATH",
"password": true
}
],
"servers": {
"quicken-mac-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"quicken-mac-mcp"
],
"env": {
"QUICKEN_DB_PATH": "${input:quicken-db-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs