Server data from the Official MCP Registry
German e-invoicing MCP server: ZUGFeRD 2.x, XRechnung 3.x, EN 16931, KoSIT validation, Peppol.
German e-invoicing MCP server: ZUGFeRD 2.x, XRechnung 3.x, EN 16931, KoSIT validation, Peppol.
This is a well-structured MCP server for German e-invoicing with proper architecture and reasonable security posture. The server has appropriate authentication (none required for this use case), no malicious patterns, and permissions that match its purpose. Minor code quality issues around optional dependency handling and incomplete error messages do not significantly impact security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
5 files analyzed ยท 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: EINVOICING_DE_LOG_LEVEL
Environment variable: EINVOICING_DE_KOSIT_VALIDATOR_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-cmendezs-mcp-einvoicing-de": {
"env": {
"EINVOICING_DE_LOG_LEVEL": "your-einvoicing-de-log-level-here",
"EINVOICING_DE_KOSIT_VALIDATOR_URL": "your-einvoicing-de-kosit-validator-url-here"
},
"args": [
"mcp-einvoicing-de"
],
"command": "uvx"
}
}
}From the project's GitHub README.
MCP server (Model Context Protocol) in Python for German electronic invoicing in ZUGFeRD 2.x and XRechnung 3.x formats (EN 16931, FeRD, KoSIT). Enables AI agents (Claude, IDEs) to create, validate, parse, and convert e-invoices that are fully compliant with the German B2B e-invoicing mandate (effective from 2025, phased enforcement through 2027 to 2028) and the European standard EN 16931.
This package is built on mcp-einvoicing-core, a shared base library for European e-invoicing MCP servers. It provides shared models, validation abstractions, XML utilities, and the exception hierarchy.
mcp-einvoicing-core is automatically installed as a transitive dependency, no additional step required.
For developers:
pip install -e ".[dev]"installs the base package automatically from PyPI.
mcp-einvoicing-de (this package, standalone MCP server)
โโโ ZUGFeRDInvoice / XRechnungInvoice โ Pydantic models (all profiles)
โโโ SchematronValidator โ EN 16931 + KoSIT BR-DE-* rules
โโโ KoSITValidator โ Remote validation tool (optional)
โโโ Tools: create / validate / parse / convert / peppol_check / tax_rules
โ extends
mcp-einvoicing-core (shared base, installed as dependency)
โโโ BaseDocumentGenerator / Validator / Parser
โโโ BaseInvoice, BaseParty โฆ (Pydantic)
โโโ xml_utils, exceptions
โโโ EInvoicingMCPServer
pip install mcp-einvoicing-de
Without prior installation, using uvx:
uvx mcp-einvoicing-de
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]"
| Extra | Purpose | Install |
|---|---|---|
[xslt2] | Saxon-HE backend for XSLT 2.0 Schematron stylesheets (FeRD Factur-X 1.08 and KoSIT XRechnung 3.0.2). Required for local Schematron validation; lxml supports XSLT 1.0 only. | pip install mcp-einvoicing-de[xslt2] |
[pdf] | PDF/A-3 hybrid invoice generation and embedded XML extraction (uses pikepdf). | pip install mcp-einvoicing-de[pdf] |
[pymupdf] | Alternative PDF engine (uses PyMuPDF). | pip install mcp-einvoicing-de[pymupdf] |
[dev] | Development tools (pytest, ruff, pre-commit). | pip install mcp-einvoicing-de[dev] |
The server does not require external credentials. Available environment variables:
| Variable | Description | Default |
|---|---|---|
EINVOICING_DE_LOG_LEVEL | Log level (DEBUG, INFO, WARNING, ERROR) | INFO |
EINVOICING_DE_KOSIT_VALIDATOR_URL | URL of a self-hosted KoSIT validation tool REST endpoint (optional, enables remote validation when set) |
Add the following entry to claude_desktop_config.json:
{
"mcpServers": {
"einvoicing-de": {
"command": "uvx",
"args": ["mcp-einvoicing-de"]
}
}
}
Configuration file (~/.cursor/mcp.json or .cursor/mcp.json in the project directory):
{
"mcpServers": {
"einvoicing-de": {
"command": "uvx",
"args": ["mcp-einvoicing-de"]
}
}
}
{
"mcpServers": {
"einvoicing-de": {
"command": "uvx",
"args": ["mcp-einvoicing-de"],
"disabled": false,
"autoApprove": []
}
}
}
| Tool | Description |
|---|---|
invoice_create | Generate ZUGFeRD or XRechnung XML (CII or UBL). Enforces the ยง14 Abs. 2 UStG B2B mandate: non-XML output is rejected for DE-prefixed VAT buyers unless transitional_period_opt_in=True is set. PDF/A-3 hybrid via experimental output_format='pdf' ships XMP pdfaid metadata; full ISO 19005-3 level B (OutputIntent + ICC + fonts) is a v0.4.0 follow-up. |
invoice_validate | Validate an invoice against EN 16931 and KoSIT Schematron rules (BR-DE-*). XSLT 2.0 FeRD and KoSIT stylesheets execute via Saxon-HE when the [xslt2] extra is installed. |
invoice_parse | Extract structured data from ZUGFeRD or XRechnung XML, or from a PDF/A-3 hybrid invoice with embedded factur-x.xml / zugferd-invoice.xml (requires [pdf] extra). |
invoice_convert | Convert between ZUGFeRD profiles or swap ZUGFeRD CII and XRechnung CII headers. Cross-syntax CII to UBL transformation is rejected pending v0.4.0. |
peppol_check | Check Peppol participant registration of a German company. Lookup only; AS4 outbound transmission is tracked as DE-PEPPOL-1 for v0.5.0. |
tax_rules | Query German VAT rules (rates, ยง13b UStG reverse charge codes, ยง19 UStG Kleinunternehmer thresholds at JStG 2024 values of โฌ25,000 preceding year / โฌ100,000 current year, exemptions). |
1. invoice_validate(
xml_base64="...", # Base64-encoded ZUGFeRD XML
strict=True
)
โ {
"is_valid": true,
"profile": "EN_16931",
"syntax": "CII",
"error_count": 0,
"warning_count": 2,
"errors": [],
"warnings": [...],
"validator_used": "local_schematron"
}
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": "..."
}
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"
}
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"
}
| Standard | Version | Profiles / Syntax |
|---|---|---|
| ZUGFeRD | 2.3.2 | MINIMUM, BASIC WL, BASIC, EN 16931, EXTENDED |
| XRechnung | 3.0.2 | CII (Cross Industry Invoice), UBL (Universal Business Language) |
| EN 16931 | 2017 | European core data model for electronic invoicing |
| Peppol BIS | 3.0 | Billing 3.0 (EN 16931-compliant) |
Note: ZUGFeRD 2.x and XRechnung 3.x share the same CII XML syntax at the EN 16931 profile level. Conversion between both formats is therefore possible without data loss. The EXTENDED profile is specific to ZUGFeRD and has no XRechnung equivalent.
| Resource | Link |
|---|---|
| FeRD ZUGFeRD specification | ferd-net.de |
| KoSIT XRechnung | xeinkauf.de |
| KoSIT validation tool | github.com/itplr-kosit/validationtool |
| EN 16931-1:2017 | CEN |
| Peppol BIS Billing 3.0 | docs.peppol.eu |
# Install development dependencies
pip install -e ".[dev]"
# Run the full test suite
pytest tests/ -v
# With coverage report
pytest --cov=mcp_einvoicing_de --cov-report=term-missing
# Model tests only
pytest tests/test_models.py -v
Current version: v0.3.1. Upcoming releases:
| Version | Features |
|---|---|
| v0.4.0 | Full ISO 19005-3 level B in generate_pdf_invoice (sRGB OutputIntent + ICC + TTF fonts); cross-syntax CII to UBL transformation in invoice_convert; default-on KoSIT cloud validation with retry and structured fallback; audit gate reconciliation of country-reference [NEED:] markers |
| v0.5.0 | Peppol AS4 outbound transmission (DE-PEPPOL-1); DATEV import format export (DE-DATEV-1) |
| v1.0.0 | Production-ready: full EN 16931 coverage, KoSIT cloud canary corpus, performance benchmarks, 95% line coverage with mutation tests, end-to-end integration test against the cloud validator |
For the history of past releases, see RELEASE.md.
Contributions are welcome. Please open an issue before submitting a pull request for significant changes.
git clone https://github.com/cmendezs/mcp-einvoicing-de.git
cd mcp-einvoicing-de
pip install -e ".[dev]"
pytest
make audit
| Country | Server |
|---|---|
| ๐ Global | mcp-einvoicing-core |
| ๐ง๐ช Belgium | mcp-einvoicing-be |
| ๐ง๐ท Brazil | mcp-nfe-br |
| ๐ซ๐ท France | mcp-facture-electronique-fr |
| ๐ฉ๐ช Germany | mcp-einvoicing-de |
| ๐ฎ๐น Italy | mcp-fattura-elettronica-it |
| ๐ต๐ฑ Poland | mcp-ksef-pl |
| ๐ช๐ธ Spain | mcp-facturacion-electronica-es |
This project is licensed under the Apache 2.0 License.
See the LICENSE file for details.
Copyright 2026 cmendezs
Project maintained by cmendezs. For questions about the ZUGFeRD or XRechnung specification implementation, please open an issue.
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol ยท Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.