bookie for VS Code
io.github.yuens1002/bookie
Double-entry bookkeeping MCP server — import bank CSVs, categorize, reconcile, tax reports.
client:VS Code
transport:stdio
runtime:npm
Install bookie in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bookie-db-url",
"description": "BOOKIE_DB_URL",
"password": true
},
{
"type": "promptString",
"id": "bookie-db-direct-url",
"description": "BOOKIE_DB_DIRECT_URL",
"password": true
},
{
"type": "promptString",
"id": "bookie-api-key",
"description": "BOOKIE_API_KEY",
"password": true
}
],
"servers": {
"bookie": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"bookie-mcp"
],
"env": {
"BOOKIE_DB_URL": "${input:bookie-db-url}",
"BOOKIE_DB_DIRECT_URL": "${input:bookie-db-direct-url}",
"BOOKIE_API_KEY": "${input:bookie-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs