Skip to main content
Glama

Jithox EU business checks

generate_pdf_invoice

Read-onlyIdempotent

Generate a polished, human-readable PDF invoice from structured invoice data (supplier, customer, line items, totals) and return it as a base64-encoded document. Local rendering; pairs with send_email_resend to email the PDF as invoice.pdf.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
linesYesOne or more invoice line items.
notesNoOptional footer notes / payment terms.
dueDateNoOptional due date (ISO 8601).
currencyNoISO 4217 currency code (uppercase). Defaults to EUR.EUR
customerYesThe company being BILLED.
supplierYesThe company ISSUING the invoice (you / your business).
issueDateYesIssue date (ISO 8601), e.g. 2026-06-06.
invoiceNumberYesInvoice number, e.g. "INV-2026-0001".

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is known. The description adds useful behavioral context: 'Local rendering' (no external calls) and the return format as base64. It does not contradict the annotations and provides additional operational detail beyond the structured metadata.

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 with no redundancy. The main action is front-loaded, and the extra detail (local rendering, pairing with send_email_resend) is concise and relevant. Every sentence earns its place.

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?

There is no output schema, but the description clearly states the return type (base64-encoded PDF). It also covers the local rendering aspect and suggests a companion tool. While it doesn't discuss error handling or edge cases, the annotations and schema cover validation and safety, making it sufficiently complete for an agent to call it 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 every parameter already has a clear description. The tool description adds no extra meaning beyond the schema, only restating that it uses supplier, customer, line items, and totals. The baseline of 3 is appropriate given the schema fully documents parameters.

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 states a specific verb ('Generate'), a concrete resource ('polished, human-readable PDF invoice'), and the input ('structured invoice data') and output ('base64-encoded document'). It clearly differentiates from the sibling format_peppol_invoice by emphasizing human-readable PDF, and the local rendering note adds specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance on when to use this tool versus alternatives. It mentions pairing with send_email_resend, but that is not a sibling tool and does not clarify selection criteria. No exclusions or conditions are provided for choosing this over format_peppol_invoice or other invoice-related tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.