Skip to main content
Glama

Server Details

Validiert E-Rechnungen (ZUGFeRD/Factur-X, XRechnung) gegen EN 16931 mit Korrekturvorschlägen.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

5 tools
check_consistencyBInspect

Prüft ob die sichtbaren PDF-Daten mit den eingebetteten XML-Daten übereinstimmen.

ParametersJSON Schema
NameRequiredDescriptionDefault
pdf_contentYesBase64-kodierter Inhalt der ZUGFeRD-PDF-Datei

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesBelegdatum (YYYY-MM-DD)
noteNoFreitext-Hinweis
buyerYesKäufer / Rechnungsempfänger
linesYesRechnungspositionen (mindestens eine)
formatYes'zugferd' = PDF/A-3 mit eingebettetem XML, 'xrechnung' = reines XML
numberYesBelegnummer
sellerNoVerkäufer / Rechnungssteller. Weglassen, wenn im Konto feste Absenderdaten hinterlegt sind — sie werden dann eingesetzt.
currencyNoWährung (Standard EUR)
due_dateNoFälligkeitsdatum (YYYY-MM-DD)
type_codeNoRoher UNTDID-1001-Code (überschreibt document_type; für seltene Typen wie 875-877 Bauleistung)
self_checkNoWenn true, wird die erzeugte Rechnung sofort gegen EN 16931 geprüft (langsamer). Standard: false.
seller_logoNoLogo als Base64 (PNG/JPG) — nur im Pro/Ultra-Tarif
delivery_dateNoLeistungs-/Lieferdatum (BT-72, YYYY-MM-DD). In Deutschland Pflichtangabe; ohne Angabe gilt das Belegdatum.
document_typeNoDokumenttyp (Standard invoice). credit_note=Gutschrift/Storno, corrected=Korrektur, self_billed=Gutschriftverfahren, prepayment=Anzahlung, partial=Teilrechnung, debit_note=Belastungsanzeige. Mappt auf BT-3.
payment_meansNoZahlungsangaben (IBAN etc.)
payment_termsNoZahlungsbedingungen (Freitext)
billing_periodNoLeistungszeitraum (BG-14, BT-73/74) bei laufenden Leistungen, jeweils YYYY-MM-DD. Ersetzt delivery_date.
buyer_referenceNoLeitweg-ID / Käuferreferenz (BT-10, bei XRechnung Pflicht)
preceding_invoiceNoBezug auf die Ursprungsrechnung (BT-25/26) — bei Storno, Korrektur oder Gutschrift angeben
allowances_chargesNoRabatte/Zuschläge auf Dokumentebene

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
pdf_contentYesBase64-kodierter Inhalt der ZUGFeRD-PDF-Datei

TDQS

A3.6/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileNoErwartetes Profil (optional, wird automatisch erkannt)
file_typeYes'pdf' für ZUGFeRD/Factur-X, 'xml' für XRechnung
file_contentYesBase64-kodierter Inhalt der PDF- oder XML-Datei

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoSprache des Berichts. Standard 'de'.
file_nameNoDateiname, der im Bericht steht.
file_typeYesDateityp: 'pdf' für ZUGFeRD/Factur-X, 'xml' für XRechnung/CII
file_contentYesBase64-kodierter Inhalt der PDF- oder XML-Datei
attach_sourceNoGeprüfte Rechnung sichtbar anhängen (PDF-Seiten bzw. abgedruckter XML-Inhalt). Standard false.

TDQS

A3.8/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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. Dates show when Glama detected each change.

  1. 1 tool update
    • Addedvalidation_report
  2. 1 tool update
    • Changedcreate_invoice4 fields changed
      • addedInput schema / properties / billing_period
        Added 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"
        +}
      • addedInput schema / properties / delivery_date
        Added value: +{
        +  "description": "Leistungs-/Lieferdatum (BT-72, YYYY-MM-DD). In Deutschland Pflichtangabe; ohne Angabe gilt das Belegdatum.",
        +  "type": "string"
        +}
      • changedInput schema / properties / seller / description
        Previous value: -"Verkäufer / Rechnungssteller"New value: +"Verkäufer / Rechnungssteller. Weglassen, wenn im Konto feste Absenderdaten hinterlegt sind — sie werden dann eingesetzt."
      • changedInput schema / required
        Previous value: -[
        -  "format",
        -  "number",
        -  "date",
        -  "seller",
        -  "buyer",
        -  "lines"
        -]New value: +[
        +  "format",
        +  "number",
        +  "date",
        +  "buyer",
        +  "lines"
        +]
  3. 4 tool updates
    • First observedcheck_consistency
    • First observedcreate_invoice
    • First observedextract_xml
    • First observedvalidate_invoice

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Validates electronic invoices (XRechnung, ZUGFeRD, Factur-X, Peppol BIS, etc.) against authority-pinned rules and explains failures.
    2
    21
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Validates 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.
    3
    53
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    EU 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
  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables AI assistants to locally parse, validate, audit, explain, generate, and convert XRechnung and ZUGFeRD/Factur-X e-invoices using official rule sets, fully offline with no API keys required.
    Apache 2.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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.

Resources