MCP server for German electronic invoicing (ZUGFeRD 2.x, XRechnung 3.x, EN 16931)
Project description
mcp-einvoicing-de 🇩🇪
MCP-Server (Model Context Protocol) in Python für die deutsche elektronische Rechnung in den Formaten ZUGFeRD 2.x und XRechnung 3.x (EN 16931, FeRD, KoSIT). Ermöglicht KI-Agenten (Claude, IDEs) das Erstellen, Validieren, Parsen und Konvertieren von E-Rechnungen, die vollständig dem deutschen B2B-E-Rechnungsmandat (gültig ab 2025, schrittweise Durchsetzung bis 2027–2028) und der europäischen Norm EN 16931 entsprechen.
English summary
This is a Model Context Protocol (MCP) server for German electronic invoicing. It exposes 6 tools covering the full lifecycle of a ZUGFeRD or XRechnung invoice: creation (CII/UBL XML), validation against EN 16931 and KoSIT Schematron rules (BR-DE-*), parsing of existing invoice files, profile and syntax conversion, Peppol participant registration lookup (AS4), and German VAT rules (Steuerklassen, §13b UStG reverse charge, exemptions). Supports all ZUGFeRD 2.x profiles (MINIMUM through EXTENDED) and XRechnung 3.x (CII and UBL syntax). Licensed under MIT.
Aufgebaut auf
Dieses Paket basiert auf mcp-einvoicing-core, einer gemeinsamen Basisbibliothek für europäische E-Rechnungs-MCP-Server. Sie stellt gemeinsame Modelle, Validierungsabstraktionen, XML-Hilfsfunktionen und die Ausnahmehierarchie bereit.
mcp-einvoicing-core wird automatisch als transitive Abhängigkeit installiert — kein zusätzlicher Schritt erforderlich.
Für Entwickler:
pip install -e ".[dev]"installiert das Basispaket automatisch aus PyPI.
🏗️ Architektur
mcp-einvoicing-de (dieses Paket — eigenständiger MCP-Server)
├── ZUGFeRDInvoice / XRechnungInvoice ← Pydantic-Modelle (alle Profile)
├── SchematronValidator ← EN 16931 + KoSIT BR-DE-* Regeln
├── KoSITValidator ← Remote-Validierungstool (optional)
└── Tools: create / validate / parse / convert / peppol_check / tax_rules
↑ erweitert
mcp-einvoicing-core (gemeinsame Basis, als Abhängigkeit installiert)
├── BaseDocumentGenerator / Validator / Parser
├── BaseInvoice, BaseParty … (Pydantic)
├── xml_utils, exceptions
└── EInvoicingMCPServer
🚀 Installation
Über PyPI (empfohlen)
pip install mcp-einvoicing-de
Ohne vorherige Installation mit uvx:
uvx mcp-einvoicing-de
Aus den Quellen
git clone https://github.com/cmendezs/mcp-einvoicing-de.git
cd mcp-einvoicing-de
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e ".[dev]"
⚙️ Konfiguration
Der Server benötigt in v0.1.0 keine externen Zugangsdaten. Verfügbare Umgebungsvariablen:
| Variable | Beschreibung | Standard |
|---|---|---|
EINVOICING_DE_LOG_LEVEL |
Protokollierungsgrad (DEBUG, INFO, WARNING, ERROR) |
INFO |
EINVOICING_DE_KOSIT_VALIDATOR_URL |
URL des KoSIT-Validierungstools (optional, für Remote-Validierung) | — |
EINVOICING_DE_PEPPOL_SMP_URL |
Peppol-SMP-Lookup-URL (optional) | — |
EINVOICING_DE_PDF_ENGINE |
PDF-Generierungsmodul (reportlab oder pymupdf) |
reportlab |
🤖 Integration Claude Desktop
Eintrag in die Datei claude_desktop_config.json:
{
"mcpServers": {
"einvoicing-de": {
"command": "uvx",
"args": ["mcp-einvoicing-de"]
}
}
}
⌨️ Integration Cursor
Konfigurationsdatei (~/.cursor/mcp.json oder .cursor/mcp.json im Projektverzeichnis):
{
"mcpServers": {
"einvoicing-de": {
"command": "uvx",
"args": ["mcp-einvoicing-de"]
}
}
}
🪐 Integration Kiro
{
"mcpServers": {
"einvoicing-de": {
"command": "uvx",
"args": ["mcp-einvoicing-de"],
"disabled": false,
"autoApprove": []
}
}
}
🧰 Verfügbare MCP-Werkzeuge
| Werkzeug | Beschreibung |
|---|---|
invoice_create |
ZUGFeRD- oder XRechnung-XML (CII oder UBL) erzeugen; PDF/A-3-Hybrid geplant (v0.2.0) |
invoice_validate |
Rechnung gegen EN 16931 und KoSIT-Schematron-Regeln (BR-DE-*) prüfen |
invoice_parse |
Strukturierte Daten aus einer bestehenden ZUGFeRD- oder XRechnung-Datei extrahieren |
invoice_convert |
Zwischen ZUGFeRD-Profilen oder ZUGFeRD ↔ XRechnung konvertieren |
peppol_check |
Peppol-Teilnehmerregistrierung eines deutschen Unternehmens prüfen (AS4) |
tax_rules |
Deutsche Umsatzsteuerregeln abfragen (Steuerklassen, §13b UStG, Befreiungen) |
Verwendungsbeispiele
Beispiel 1 — Rechnung validieren
1. invoice_validate(
xml_base64="...", # Base64-kodiertes ZUGFeRD-XML
strict=True
)
→ {
"is_valid": true,
"profile": "EN_16931",
"syntax": "CII",
"error_count": 0,
"warning_count": 2,
"errors": [],
"warnings": [...],
"validator_used": "local_schematron"
}
Beispiel 2 — Deutsche Steuerregeln abfragen
2. tax_rules(query="reverse_charge", context="Bauleistungen")
→ {
"results": [
{
"paragraph": "§13b Abs. 2 Nr. 5 UStG",
"description_en": "Construction services (building contractor rule)",
"vatex_code": "VATEX-EU-AE",
"invoice_note": "Steuerschuldnerschaft des Leistungsempfängers (§13b UStG)"
}
],
"legal_disclaimer": "..."
}
Beispiel 3 — Peppol-Registrierung prüfen
3. peppol_check(
participant_id="0204:991-1234512345-06",
environment="production"
)
→ {
"is_registered": true,
"participant_id": "0204:991-1234512345-06",
"document_type_supported": true,
"access_point_url": "https://ap.example.de/as4",
"transport_profile": "peppol-transport-as4-v2.0"
}
Beispiel 4 — Rechnungsdaten parsen
4. invoice_parse(xml_base64="...", include_raw_xml=False)
→ {
"profile": "XRECHNUNG",
"syntax": "CII",
"invoice_number": "RE-2025-001",
"invoice_date": "2025-01-15",
"seller_name": "Muster GmbH",
"buyer_name": "Käufer AG",
"tax_inclusive_amount": "119.00",
"currency_code": "EUR"
}
📚 Unterstützte Standards
| Standard | Version | Profile / Syntax |
|---|---|---|
| ZUGFeRD | 2.3 | MINIMUM, BASIC WL, BASIC, EN 16931, EXTENDED |
| XRechnung | 3.x | CII (Cross Industry Invoice), UBL (Universal Business Language) |
| EN 16931 | — | Europäisches Kerndatenmodell für die elektronische Rechnung |
| Peppol BIS | 3.0 | Billing 3.0 (DE PINT) |
Hinweis: ZUGFeRD 2.x und XRechnung 3.x teilen auf Profilebene EN 16931 dieselbe CII-XML-Syntax. Eine Konvertierung zwischen beiden Formaten ist daher ohne Datenverlust möglich. Das EXTENDED-Profil ist ZUGFeRD-spezifisch und hat kein XRechnung-Äquivalent.
| Ressource | Link |
|---|---|
| FeRD ZUGFeRD-Spezifikation | ferd-net.de |
| KoSIT XRechnung | xeinkauf.de |
| KoSIT Validierungstool | github.com/itplr-kosit/validationtool |
| EN 16931-1:2017 | CEN |
| Peppol BIS Billing 3.0 | docs.peppol.eu |
🧪 Tests
# Entwicklungsabhängigkeiten installieren
pip install -e ".[dev]"
# Gesamte Testsuite ausführen
pytest tests/ -v
# Mit Abdeckungsbericht
pytest --cov=mcp_einvoicing_de --cov-report=term-missing
# Nur Modell-Tests
pytest tests/test_models.py -v
Roadmap
| Version | Funktionen |
|---|---|
| v0.1.0 (aktuell) | Werkzeuge: create, validate, parse, convert, peppol_check, tax_rules |
| v0.2.0 | PDF/A-3-Einbettung (ZUGFeRD-Hybrid) via reportlab / PyMuPDF |
| v0.3.0 | KoSIT-Online-Validator vollständig integriert |
| v0.4.0 | Peppol AS4 Direktübermittlung |
| v0.5.0 | DATEV-Exportformat |
| v1.0.0 | Produktionsreif, vollständige EN 16931-Abdeckung |
Mitwirken
Beiträge sind willkommen. Bitte öffnen Sie ein Issue, bevor Sie einen Pull Request für wesentliche Änderungen einreichen.
git clone https://github.com/cmendezs/mcp-einvoicing-de.git
cd mcp-einvoicing-de
pip install -e ".[dev]"
pytest
make audit
Other e-invoicing MCP servers
| Country | Server |
|---|---|
| 🌍 Global | mcp-einvoicing-core |
| 🇧🇪 Belgium | mcp-einvoicing-be |
| 🇫🇷 France | mcp-facture-electronique-fr |
| 🇮🇹 Italy | mcp-fattura-elettronica-it |
| 🇩🇪 Germany | mcp-einvoicing-de |
📄 Lizenz
Dieses Projekt steht unter der MIT-Lizenz.
Einzelheiten finden Sie in der Datei LICENSE.
Copyright 2026 cmendezs
Projekt gepflegt von cmendezs. Für Fragen zur Implementierung der ZUGFeRD- oder XRechnung-Spezifikation bitte ein Issue eröffnen.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_einvoicing_de-0.1.0.tar.gz.
File metadata
- Download URL: mcp_einvoicing_de-0.1.0.tar.gz
- Upload date:
- Size: 38.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fb1d47b01ee756d064703bd094cf021567b2956d984051bb7254cdbddd5fcf2
|
|
| MD5 |
34b408fbe79fc945f9653b7f299b5509
|
|
| BLAKE2b-256 |
e3f39a0df1b149bb260d9cc039333445d81b86be213142fd1124dc51761557e2
|
Provenance
The following attestation bundles were made for mcp_einvoicing_de-0.1.0.tar.gz:
Publisher:
publish.yml on cmendezs/mcp-einvoicing-de
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_einvoicing_de-0.1.0.tar.gz -
Subject digest:
3fb1d47b01ee756d064703bd094cf021567b2956d984051bb7254cdbddd5fcf2 - Sigstore transparency entry: 1439354562
- Sigstore integration time:
-
Permalink:
cmendezs/mcp-einvoicing-de@98072c2ecfc4da0faa1534a870fb4f3e776caf82 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/cmendezs
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@98072c2ecfc4da0faa1534a870fb4f3e776caf82 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mcp_einvoicing_de-0.1.0-py3-none-any.whl.
File metadata
- Download URL: mcp_einvoicing_de-0.1.0-py3-none-any.whl
- Upload date:
- Size: 36.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dffc63e205cb0960e4391cce177ff767c46f35e0a4adada639740f2358fc2509
|
|
| MD5 |
5454d9ea0400f676f3a7a0d3c41774f5
|
|
| BLAKE2b-256 |
3d2bc663b1e8623c5b8fb641b0fd431220b547bb1cbf2da49cbbb978b5de4313
|
Provenance
The following attestation bundles were made for mcp_einvoicing_de-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on cmendezs/mcp-einvoicing-de
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_einvoicing_de-0.1.0-py3-none-any.whl -
Subject digest:
dffc63e205cb0960e4391cce177ff767c46f35e0a4adada639740f2358fc2509 - Sigstore transparency entry: 1439354617
- Sigstore integration time:
-
Permalink:
cmendezs/mcp-einvoicing-de@98072c2ecfc4da0faa1534a870fb4f3e776caf82 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/cmendezs
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@98072c2ecfc4da0faa1534a870fb4f3e776caf82 -
Trigger Event:
push
-
Statement type: