Skip to content
VS Code

DanBooks — AI Bookkeeping for VS Code

io.github.jeremiahclark79-ai/danbooks-mcp

AI bookkeeping for small business. Create invoices, log expenses, and check P&L by voice or text.

client:VS Code transport:stdio runtime:npm

Install DanBooks — AI Bookkeeping in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "danbooks-api-url",
      "description": "DANBOOKS_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "danbooks-api-key",
      "description": "DANBOOKS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "danbooks-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "danbooks-mcp"
      ],
      "env": {
        "DANBOOKS_API_URL": "${input:danbooks-api-url}",
        "DANBOOKS_API_KEY": "${input:danbooks-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

DanBooks — AI Bookkeeping in other clients