Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте sevDesk одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
Summary
sevDesk cloud bookkeeping for German SMBs and freelancers: contacts, invoices, vouchers (Belege), orders, parts and bank accounts. REST API v1, API-key auth — the key goes in a bare Authorization header, with no Bearer prefix.
Попробуй спросить
Примеры промптов для sevDesk
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → sevDesk, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
sevDesk
sevDesk cloud bookkeeping for German SMBs and freelancers: contacts, invoices, vouchers (Belege), orders, parts and bank accounts. REST API v1, API-key auth — the key goes in a bare Authorization header, with no Bearer prefix.
Настройка
Getting a key
- Sign in to sevDesk and open Einstellungen → Benutzer → (your user) → API-Token.
- Copy the token into
SEVDESK_API_KEY. It belongs to one user in one client (Mandant) and inherits that user's permissions — create a dedicated API user with read rights if the agent should not be able to write.
The Authorization header has no scheme. sevDesk expects the raw token (Authorization: abc123…), not Bearer abc123…. This adapter sends it that way; if you build a custom connector against sevDesk by hand, that is the single most common reason for a 401.
…(continued in the in-app connector instructions)
Предварительные требования: SEVDESK_API_KEY
Локальная установка коннектора
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Откройте http://localhost:3000/connectors/store, выберите sevDesk и введите переменные, перечисленные в Предварительных требованиях.
Доступные инструменты
| Tool | What it does |
|---|---|
sevdesk_list_users | List the sevDesk users in this client, with their names and e-mail addresses |
sevdesk_list_contacts | List contacts (customers, suppliers, partners) |
sevdesk_get_contact | Read one contact by its numeric sevDesk id, with its category, customer number, tax settings and default payment terms |
sevdesk_list_invoices | List outgoing invoices, newest first |
sevdesk_get_invoice_positions | Read the line items (Positionen) of one invoice: article, quantity, unit price, tax rate and the resulting net and gross sums |
sevdesk_list_vouchers | List vouchers (Belege) — incoming supplier invoices and receipts |
sevdesk_list_orders | List orders and quotations (Aufträge und Angebote) |
sevdesk_list_parts | List parts (Artikel) from the sevDesk product catalogue with their price, stock level, unit and tax rate |
sevdesk_list_check_accounts | List the bank and cash accounts (Kassen und Bankkonten) configured in sevDesk, with their current balance and import type |
sevdesk_list_transactions | List bank transactions on one check account, so unpaid invoices can be matched against money that actually arrived |
sevdesk_create_contact | Create a new contact |
Следующие шаги
Это руководство помогло?