Skip to content
VS Code

billy mcp for VS Code

io.github.thourum/billy-mcp

Billy (billy.dk) accounting: invoices, journal entries, trial balance, with write protection.

client:VS Code transport:stdio runtime:npm

Install billy mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "billy-access-token",
      "description": "BILLY_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "billy-write-mode",
      "description": "BILLY_WRITE_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "billy-organization-id",
      "description": "BILLY_ORGANIZATION_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "billy-locale",
      "description": "BILLY_LOCALE",
      "password": true
    }
  ],
  "servers": {
    "billy-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "billy-mcp"
      ],
      "env": {
        "BILLY_ACCESS_TOKEN": "${input:billy-access-token}",
        "BILLY_WRITE_MODE": "${input:billy-write-mode}",
        "BILLY_ORGANIZATION_ID": "${input:billy-organization-id}",
        "BILLY_LOCALE": "${input:billy-locale}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

billy mcp in other clients