Complete sevDesk MCP server: all API endpoints, guarded writes, built-in bookkeeping audits.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag — we're steadily working through the catalog.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
English · Deutsch
The complete MCP server for sevDesk: every API endpoint, guarded writes, and a built-in bookkeeping audit layer.
Connect Claude (or any MCP client) to your sevDesk account: list and create vouchers and invoices, reconcile bank transactions, reach all 151 API operations — and run audits that know what a wrong booking looks like: a foreign supplier booked as domestic 0 % instead of Reverse Charge §13b, a tax rule the booking account doesn't allow, a payment with no receipt behind it.
Status: v0.4.0. Live-validated against a real sevDesk account (bookkeeping system 2.0) — where the audit found exactly the class of mis-booking it was built for. See CHANGELOG.md.
You need: Node.js ≥ 22, a sevDesk account, and an MCP client (Claude Code, Claude Desktop, or any other).
1. Get your API token
In sevDesk: Settings → Users → your user → API. The token is a 32-character hex string.
⚠️ A sevDesk API token has no scopes — it can do everything your login can. Treat it like your password, and start in read-only mode.
2. Connect your MCP client
Claude Code — one command, then put your real token into the config it writes (~/.claude.json):
Claude Desktop — add to claude_desktop_config.json (Settings → Developer → Edit Config):
Any other MCP client works the same way: stdio transport, npx -y sevdesk-mcp (or node dist/index.js from a clone), config via environment variables. To run from source instead: git clone https://github.com/joosthel/sevdesk-mcp && cd sevdesk-mcp && npm install && npm run build.
3. First run
Restart your client and ask it to run sevdesk_ping. You should see ok: true, your bookkeeping system version (2.0 = taxRule, 1.0 = legacy taxType) and the mode (READ-ONLY). Then start asking:
What a finding looks like:
4. Enabling writes (optional, later)
Once you trust the setup, set SEVDESK_READ_ONLY to "false" and restart the client. Every write tool accepts dryRun (and honors the global SEVDESK_DRY_RUN) — it shows exactly what would be sent without sending it. See Write safety.
24 tools cover all 151 API operations.
| Tool | What it does |
|---|---|
sevdesk_audit_vat | Flags reverse-charge mis-bookings, rules from the wrong side of the books, tax rules the booking account doesn't allow, rates that contradict the tax rule, sums that don't add up, suppliers booked inconsistently. Uses the supplier contact's country where available |
sevdesk_reverse_charge_report | Totals the §13b tax base for a period — split into nets-to-zero (rule 12/14), actually payable (rule 13) and own revenue (rule 5) |
sevdesk_find_duplicates | Repeated document numbers, same supplier + amount within N days, vouchers stuck in Entwurf |
sevdesk_subscription_gaps | Detects monthly cadences per supplier and reports the missing months |
sevdesk_diff_receipt_folder | Diffs a local folder of receipt PDFs against booked vouchers, both directions (requires SEVDESK_RECEIPT_DIRS) |
sevdesk_reconcile_transactions | Matches bank transactions against vouchers by amount and date proximity: payments without a receipt, vouchers without a payment |
sevdesk_invoice_aging | Who owes you money and for how long: open invoices bucketed by days overdue, partially paid remainders, drafts never sent |
sevdesk_ping · sevdesk_summarize · sevdesk_list_vouchers · sevdesk_get_voucher · sevdesk_list_invoices · sevdesk_list_contacts · sevdesk_list_transactions · sevdesk_receipt_guidance · sevdesk_upload_voucher_file · sevdesk_create_voucher · sevdesk_set_tax_rule · sevdesk_create_invoice · sevdesk_get_invoice_pdf · sevdesk_mark_invoice_sent
Highlights: sevdesk_summarize aggregates invoices or vouchers server-side — counts and net/tax/gross sums grouped by month, status or contact — so questions like "revenue in Q2" or "expenses by supplier" cost a few hundred tokens however large the ledger is. sevdesk_receipt_guidance answers "which booking account / tax rule / rate combinations does sevDesk actually accept" from sevDesk's own validation table. sevdesk_set_tax_rule rebooks a draft voucher onto a different VAT rule with guardrails. sevdesk_create_invoice always creates drafts — nothing reaches a customer without review. sevdesk_get_invoice_pdf saves the rendered PDF without touching the invoice's send state.
sevdesk_list_operations · sevdesk_describe_operation · sevdesk_call
Rather than registering 151 tools and swamping the client's tool list, the server ships a searchable catalogue generated from sevDesk's OpenAPI document. Search for what you need, read its signature, call it. Every endpoint is reachable.
The tools compose — these are everyday bookkeeping jobs, each a single prompt:
SEVDESK_RECEIPT_DIRS)The package ships an Agent Skill with these workflows spelled out — monthly close order, receipt triage, §13b investigation, audit-finding interpretation — so agents load the know-how on demand instead of rediscovering it each session. For Claude Code, copy it next to your project:
(or copy from a clone of this repo). Clients without skill support lose
nothing: the server's own instructions and tool descriptions carry the
essentials.
| Variable | Default | Purpose |
|---|---|---|
SEVDESK_API_TOKEN | (required) | Your sevDesk API token |
SEVDESK_READ_ONLY | false | Hide write tools; sevdesk_call stays listed but refuses mutating operations at call time |
SEVDESK_DRY_RUN | false | Show what a write would send, without sending it |
SEVDESK_VAT_REGIME | auto | regular, kleinunternehmer (§19 UStG) or auto. auto infers the regime from your recent invoices; sevdesk_ping reports what was detected and why. Tax-rule defaults and audit suggestions follow the regime. An explicit value that contradicts the ledger is reported as an audit finding, never silently trusted |
SEVDESK_KLEINUNTERNEHMER | false | Deprecated — use SEVDESK_VAT_REGIME=kleinunternehmer. Still honored when SEVDESK_VAT_REGIME is unset |
SEVDESK_RECEIPT_DIRS | (unset — file tools disabled) | Colon-separated allowlist of directories the receipt file tools may read and write |
SEVDESK_BASE_URL | https://my.sevdesk.de/api/v1 | Override the API host |
SEVDESK_TIMEOUT_MS | 30000 | Per-request timeout |
SEVDESK_MAX_RETRIES | 3 | Retries with jittered backoff and a clamped Retry-After. A 429 is always retried (the throttled call never ran); a 5xx or network failure is retried only for reads — a write is never replayed on an ambiguous failure, so a timeout cannot create a duplicate draft |
SEVDESK_RATE_LIMIT | 4 | Client-side pacing in requests/second (token bucket), so bursty audit fan-outs don't collide with sevDesk's throttle. 0 disables pacing |
SEVDESK_DEBUG | false | Log METHOD /path -> status to stderr — never query strings, bodies or the token |
Set these in the env block of your MCP client — that is the supported path and the
one the client controls. For runs outside a client (npm run dev, node dist/index.js
from a clone), copy .env.example to .env in the package root and the server reads it
at startup. The file is read from the package root, never the working directory, and
real environment variables always win over it, so a client's env block can never be
shadowed by a stale .env. .env is gitignored.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/sevdesk-mcp)<a href="https://allmcps.com/mcp/sevdesk-mcp"><img src="https://allmcps.com/api/badge/sevdesk-mcp?style=directory" alt="Sevdesk MCP on AllMCPs" /></a>