ZUGFeRD Validator
Server Details
Validiert E-Rechnungen (ZUGFeRD/Factur-X, XRechnung) gegen EN 16931 mit Korrekturvorschlägen.
- Status
- Healthy
- Uptime
- 99.8% over 41 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 5 tools
Each tool targets a distinct workflow step: creating an invoice, validating it, extracting embedded XML, checking PDF/XML consistency, and generating a validation report. Even though check_consistency and validate_invoice both inspect invoices, their inputs and purposes are clearly separated.
Four of the five tools follow a clear verb_noun pattern: check_consistency, create_invoice, extract_xml, validate_invoice. validation_report is the only outlier, using a noun phrase instead of an action-oriented verb_noun name.
Five tools is well-scoped for an e-invoice creation and validation server. Each tool contributes a meaningful, non-redundant capability, and the count matches the domain without feeling thin or overloaded.
The server covers the core invoice workflow: creation, validation, extraction, consistency checking, and reporting. Since the service is stateless, traditional CRUD update/delete tools are not expected, so there are no significant gaps.
Available Tools
5 toolscheck_consistencyBInspect
Prüft ob die sichtbaren PDF-Daten mit den eingebetteten XML-Daten übereinstimmen.
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_content | Yes | Base64-kodierter Inhalt der ZUGFeRD-PDF-Datei |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the burden of behavioral disclosure. It only states what the tool checks, but does not mention whether it is read-only, what happens on mismatch, or what the return value/response looks like. This lack of behavioral detail is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that conveys the core purpose without any unnecessary words. It is front-loaded with the verb and resource, making it immediately understandable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While the tool is simple (one parameter, no output schema), the description omits what the result of the check is (e.g., boolean, error message). Without an output schema, the description should clarify the return behavior, which is critical for an agent to know how to handle the response. This incompleteness leaves a significant gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'pdf_content' is well-described in the schema (base64-encoded ZUGFeRD PDF content), providing 100% coverage. The description itself adds no additional parameter meaning, but the schema is sufficient, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Prüft' - checks) and a specific resource/scope (whether visible PDF data matches embedded XML data). It also distinguishes itself from siblings like create_invoice and validate_invoice by focusing on consistency between two data representations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies its usage for verifying consistency but offers no explicit guidance on when to use it versus alternatives like validate_invoice or extract_xml. It does not mention prerequisites or exclusions, so the usage context is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_invoiceAInspect
Erstellt aus strukturierten Daten eine valide E-Rechnung — entweder als ZUGFeRD-PDF (PDF/A-3 mit eingebettetem XML) oder als reines XRechnung-XML (mit Leitweg-ID für B2G). Unterstützt mehrere Positionen, alle USt-Kategorien, Rabatte/Zuschläge und Zahlungsangaben. Stateless — es wird nichts gespeichert.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Belegdatum (YYYY-MM-DD) | |
| note | No | Freitext-Hinweis | |
| buyer | Yes | Käufer / Rechnungsempfänger | |
| lines | Yes | Rechnungspositionen (mindestens eine) | |
| format | Yes | 'zugferd' = PDF/A-3 mit eingebettetem XML, 'xrechnung' = reines XML | |
| number | Yes | Belegnummer | |
| seller | No | Verkäufer / Rechnungssteller. Weglassen, wenn im Konto feste Absenderdaten hinterlegt sind — sie werden dann eingesetzt. | |
| currency | No | Währung (Standard EUR) | |
| due_date | No | Fälligkeitsdatum (YYYY-MM-DD) | |
| type_code | No | Roher UNTDID-1001-Code (überschreibt document_type; für seltene Typen wie 875-877 Bauleistung) | |
| self_check | No | Wenn true, wird die erzeugte Rechnung sofort gegen EN 16931 geprüft (langsamer). Standard: false. | |
| seller_logo | No | Logo als Base64 (PNG/JPG) — nur im Pro/Ultra-Tarif | |
| delivery_date | No | Leistungs-/Lieferdatum (BT-72, YYYY-MM-DD). In Deutschland Pflichtangabe; ohne Angabe gilt das Belegdatum. | |
| document_type | No | Dokumenttyp (Standard invoice). credit_note=Gutschrift/Storno, corrected=Korrektur, self_billed=Gutschriftverfahren, prepayment=Anzahlung, partial=Teilrechnung, debit_note=Belastungsanzeige. Mappt auf BT-3. | |
| payment_means | No | Zahlungsangaben (IBAN etc.) | |
| payment_terms | No | Zahlungsbedingungen (Freitext) | |
| billing_period | No | Leistungszeitraum (BG-14, BT-73/74) bei laufenden Leistungen, jeweils YYYY-MM-DD. Ersetzt delivery_date. | |
| buyer_reference | No | Leitweg-ID / Käuferreferenz (BT-10, bei XRechnung Pflicht) | |
| preceding_invoice | No | Bezug auf die Ursprungsrechnung (BT-25/26) — bei Storno, Korrektur oder Gutschrift angeben | |
| allowances_charges | No | Rabatte/Zuschläge auf Dokumentebene |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses important behavioral traits: 'Stateless — es wird nichts gespeichert' (stateless, nothing is stored), which is valuable. It also mentions support for multiple positions, VAT categories, discounts/surcharges, and payment details. However, it does not mention plan restrictions (e.g., logo only in Pro/Ultra) or explicit error behaviors, but those are covered in the schema. Overall, the description provides meaningful behavioral context beyond what the schema offers.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, immediately front-loading the core purpose and then providing key capability details. Every sentence carries useful information: the first defines the tool's function and formats, the second summarizes supported features and statelessness. There is no fluff or redundant restating of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (20 parameters, nested objects, no output schema), the description is fairly complete. It states what it creates, the format options, supported features, and that it is stateless. It does not explicitly describe the return value or response structure, but since there is no output schema, this is a minor gap. The description covers the essential behavioral context for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds some high-level context (e.g., 'mit Leitweg-ID für B2G' hints at buyer_reference, 'alle USt-Kategorien' maps to vat_category), but it does not delve into individual parameter semantics beyond what the schema provides. This aligns with the baseline of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb and resource: 'Erstellt aus strukturierten Daten eine valide E-Rechnung' (creates a valid e-invoice from structured data). It distinguishes itself from siblings (validation, consistency check, XML extraction) by focusing on creation, and even specifies the two output formats (ZUGFeRD-PDF and XRechnung-XML).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use the tool: when you have structured data and need to create an e-invoice. It implies the tool is for generation rather than validation or extraction, which aligns with sibling tools, but it does not explicitly name alternatives or exclusions. The context is sufficiently clear for an agent to select this tool for invoice creation tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_xmlAInspect
Extrahiert die eingebettete XML-Datei aus einem ZUGFeRD/Factur-X PDF.
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_content | Yes | Base64-kodierter Inhalt der ZUGFeRD-PDF-Datei |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates the operation is a read-only extraction, but it does not disclose potential errors (e.g., missing XML), output format, or any side effects beyond what the purpose already states.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words or redundant information. It is concise and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no annotations, no output schema), the description plus schema provide adequate context for basic usage. However, the lack of output format specification and error handling details leaves minor gaps, but not enough to reduce to a 'minimum viable' score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully describes the sole parameter pdf_content as 'Base64-kodierter Inhalt der ZUGFeRD-PDF-Datei', providing 100% coverage. The description does not add any additional parameter meaning beyond the schema, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Extrahiert' = extracts) and clearly specifies the resource (embedded XML from a ZUGFeRD/Factur-X PDF). It inherently distinguishes from sibling tools like check_consistency, create_invoice, and validate_invoice, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (extracting XML from a PDF) but provides no explicit guidance on when to use this tool versus alternatives. It does not mention exclusions or name sibling tools as alternatives, leaving usage context only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_invoiceAInspect
Validiert eine E-Rechnung (ZUGFeRD/Factur-X PDF oder XRechnung XML) gegen EN 16931 und gibt strukturierte Ergebnisse mit Korrekturvorschlägen zurück.
| Name | Required | Description | Default |
|---|---|---|---|
| profile | No | Erwartetes Profil (optional, wird automatisch erkannt) | |
| file_type | Yes | 'pdf' für ZUGFeRD/Factur-X, 'xml' für XRechnung | |
| file_content | Yes | Base64-kodierter Inhalt der PDF- oder XML-Datei |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden for behavioral disclosure. It states the tool validates against EN 16931 and returns structured results with correction suggestions, conveying the core behavior and output format. It does not mention side effects, but none are expected for a validation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that is front-loaded with the action and resource, and includes important details. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (3 parameters, no output schema), the description provides adequate context: input types, validation standard, and output nature. It does not detail the result structure, but 'structured results with correction suggestions' gives a sufficient high-level picture for an agent to select and invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All parameters are fully described in the schema (100% coverage), so the description does not need to add parameter-level details. It does mention file types and standards which relate to parameters, but this does not go beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool validates e-invoices (ZUGFeRD/Factur-X PDF or XRechnung XML) against EN 16931 and returns structured results with correction suggestions. It uses a specific verb ('Validiert') and a distinct resource, differentiating it from siblings like 'check_consistency' and 'extract_xml'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains the tool is for validating e-invoices against a specific standard, giving clear context for when to use it. It does not explicitly exclude alternatives or mention when not to use it, but the context is sufficient for distinguishing it from sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validation_reportAInspect
Erzeugt aus einer E-Rechnung einen Validierungsbericht als PDF (PDF/A-3b) zum Ablegen und Weitergeben. Der Bericht nennt Ergebnis, alle Meldungen mit Regel-ID und Feld, den Prüfzeitpunkt, Format und Profil, die SHA-256-Prüfsumme der geprüften Datei sowie die Versionen der Prüfwerkzeuge. Auf Wunsch wird die geprüfte Rechnung sichtbar angehängt. Gibt das PDF base64-kodiert zurück. Ab dem Tarif Automatisieren.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Sprache des Berichts. Standard 'de'. | |
| file_name | No | Dateiname, der im Bericht steht. | |
| file_type | Yes | Dateityp: 'pdf' für ZUGFeRD/Factur-X, 'xml' für XRechnung/CII | |
| file_content | Yes | Base64-kodierter Inhalt der PDF- oder XML-Datei | |
| attach_source | No | Geprüfte Rechnung sichtbar anhängen (PDF-Seiten bzw. abgedruckter XML-Inhalt). Standard false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals the return encoding (base64 PDF), optional attachment behavior, the exact content of the report, and even a tariff restriction. It does not explicitly state absence of side effects, but for a report-generation tool the disclosed details are strong.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and well-structured: it opens with the core purpose, then lists report contents, optional attachment, return format, and tariff requirement. Every sentence carries useful information with no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Without an output schema or annotations, the description compensates well by detailing report contents, output encoding, and optional attachment. It does not mention error conditions or prerequisites beyond the tariff note, but for a PDF-generation tool the description is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all five parameters already have descriptions and enums. The tool description reinforces attach_source and file_type semantics but adds no new parameter-level information beyond what the schema provides, meeting the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: it generates a validation report as a PDF/A-3b from an e-invoice. It also names concrete report contents and the base64 return format. However, it does not explicitly distinguish itself from the sibling tool validate_invoice, so the differentiation is only implicit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context ('zum Ablegen und Weitergeben' and 'auf Wunsch wird die Rechnung angehängt') implying this tool is for producing an archival report after validation. But it gives no explicit when-to-use vs. alternatives such as validate_invoice or check_consistency, leaving the selection to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- Added
validation_report
1 tool update
- Changed
create_invoice4 fields changed- added
Input schema / properties / billing_periodAdded value: +{ + "additionalProperties": false, + "description": "Leistungszeitraum (BG-14, BT-73/74) bei laufenden Leistungen, jeweils YYYY-MM-DD. Ersetzt delivery_date.", + "properties": { + "end": { + "type": "string" + }, + "start": { + "type": "string" + } + }, + "required": [ + "start", + "end" + ], + "type": "object" +} - added
Input schema / properties / delivery_dateAdded value: +{ + "description": "Leistungs-/Lieferdatum (BT-72, YYYY-MM-DD). In Deutschland Pflichtangabe; ohne Angabe gilt das Belegdatum.", + "type": "string" +} - changed
Input schema / properties / seller / descriptionPrevious value: -"Verkäufer / Rechnungssteller"New value: +"Verkäufer / Rechnungssteller. Weglassen, wenn im Konto feste Absenderdaten hinterlegt sind — sie werden dann eingesetzt." - changed
Input schema / requiredPrevious value: -[ - "format", - "number", - "date", - "seller", - "buyer", - "lines" -]New value: +[ + "format", + "number", + "date", + "buyer", + "lines" +]
4 tool updates
- First observed
check_consistency - First observed
create_invoice - First observed
extract_xml - First observed
validate_invoice
Related MCP Connectors
XRechnung/ZUGFeRD erstellen, gegen EN 16931 prüfen, Fehler mit Regel-ID erklären. Ohne Konto.
Validate, generate & convert EU e-invoices (UBL, CII, XRechnung, Factur-X) — EN 16931 pre-validated.
XRechnung and ZUGFeRD e-invoicing (EN 16931): create, validate, check Leitweg-IDs, German VAT.
Generate & validate EN 16931 e-invoices (Factur-X, ZUGFeRD, XRechnung); verification certificates
Related MCP Servers
- AlicenseAqualityDmaintenanceValidates electronic invoices (XRechnung, ZUGFeRD, Factur-X, Peppol BIS, etc.) against authority-pinned rules and explains failures.2151 npmMIT
- AlicenseAqualityDmaintenanceValidates EU electronic invoices (Peppol, XRechnung, FatturaPA, etc.) and explains validation error codes, enabling AI coding agents to check invoice validity and get fixes before rejection.328 npmMIT

InvoiceInofficial
AlicenseAqualityAmaintenanceReads and validates any European e-invoice a business receives — XRechnung, UBL, CII, ZUGFeRD/Factur-X PDF, Peppol BIS 3, FatturaPA, KSeF FA(3) — into canonical EN 16931 JSON with plain-language fix hints in EN/DE/PL/IT/FR, plus PDF, CSV and DATEV export. Nothing is stored; works without a key on a small daily quota.25MIT- AlicenseNot gradedqualityCmaintenanceEU e-invoice validation, as a developer API. Check whether an electronic invoice conforms to EN 16931 — the European standard behind France, Germany, Belgium, Poland and the 2030 ViDA mandate — with a single REST call. Structured JSON errors mapped to the official BR-* business rules. No enterprise sales call required.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.