Skip to content
VS Code

BuchhaltungsButler for VS Code

io.github.ohneben/buchhaltungsbutler-mcp

BuchhaltungsButler API v1: alle 54 Endpunkte als 46 sicherheitskategorisierte MCP-Tools

client:VS Code transport:stdio runtime:oci

Install BuchhaltungsButler in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bb-api-client",
      "description": "BB_API_CLIENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bb-api-secret",
      "description": "BB_API_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bb-api-key",
      "description": "BB_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bb-rate-limit",
      "description": "BB_RATE_LIMIT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bb-base-url",
      "description": "BB_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "buchhaltungsbutler-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ohneben/buchhaltungsbutler-mcp:1.1.2"
      ],
      "env": {
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "BB_API_CLIENT": "${input:bb-api-client}",
        "BB_API_SECRET": "${input:bb-api-secret}",
        "BB_API_KEY": "${input:bb-api-key}",
        "BB_RATE_LIMIT": "${input:bb-rate-limit}",
        "BB_BASE_URL": "${input:bb-base-url}"
      }
    }
  }
}

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

BuchhaltungsButler in other clients