MCP Invoice Generator
Enables generation of PDF invoices via an MCP server, using Typst for typesetting and a local TOML file for billing data.
README
<div align="center">
π§Ύ MCP Invoice Generator
Generate PDF invoices via a Model Context Protocol (MCP) server.
</div>
This server is primarily designed for local use via stdio. It generates PDF invoices directly on your machine using Typst β a modern, fast typesetting system that replaces traditional HTML/CSS-to-PDF pipelines. Templates are clean, readable .typ files compiled to pixel-perfect PDFs in milliseconds. Billing data (issuers, clients, services) is loaded from a local TOML file, making it easy to manage without any external service or database.
Features
- PDF invoice generation β Typst template compiled to PDF
- MCP server β
generate_invoiceandget_default_valuestools accessible by an LLM - TOML configuration β issuers, clients and services defined in
data/billing.toml - FastMCP β modern MCP server framework
- Typst β typesetting system for PDF rendering
- pydantic-settings β application settings management
- dynaconf β TOML billing data loading
- uv β dependency management
- ruff β linter & formatter
- Dockerfile β multi-stage build ready for production
Requirements
Getting Started
1. Clone the repository
git clone https://github.com/pirocheto/mcp-invoice-generator
cd mcp-invoice-generator
2. Billing data
Copy and fill in the data file:
cp data/billing.toml.example data/billing.toml
This file is the core data source for invoice generation. It defines the people, companies, and services that can appear on your invoices. The get_default_values tool reads directly from this file, and generate_invoice uses the provided data to populate the PDF.
You can define multiple entries in each section β simply repeat the [[issuers]], [[services]], or [[clients]] block.
[[issuers]]
name = "Jane Doe"
address = "12 rue de la Paix"
city = "Lyon"
postal = "69001"
email = "jane.doe@example.com"
siren = "123 456 789"
siret = "123 456 789 00012"
vat_number = "FR 12 123 456 789"
iban = "FR76 ..."
bic = "BNPAFRPPXXX"
tax_rate = 0.2
[[services]]
name = "consulting"
daily_rate = 600
description = "Professional services β consulting"
[[clients]]
name = "Acme Corp"
address = "42 avenue des Champs-ΓlysΓ©es"
city = "Paris"
postal = "75008"
siren = "987 654 321"
vat_number = "FR 98 987 654 321"
3. Environment variables
The application is configured via environment variables (prefixed with APP_) or a .env file at the project root.
| Variable | Default | Description |
|---|---|---|
APP_SERVICE_NAME |
Invoice Generator Service |
Name of the MCP server |
APP_ENV |
development |
Environment (development or production) |
APP_OUTPUT_DIR |
outputs |
Directory where generated PDFs are saved |
APP_TEMPLATE_DIR |
templates |
Directory containing Typst invoice templates |
APP_DATA_FILE |
data/billing.toml |
Path to the billing data TOML file |
Relative paths are resolved from the project root. Absolute paths are used as-is.
Installation
Local (stdio)
Clone the repository and point your MCP client (e.g. Claude Desktop, Github Copilot, OpenCode, etc) to it:
{
"mcpServers": {
"invoice-generator": {
"type": "stdio",
"env": {
"APP_DATA_FILE": "./data/billing.toml",
"APP_OUTPUT_DIR": "./outputs",
"APP_TEMPLATE_DIR": "./templates"
},
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/mcp-invoice-generator",
"--",
"fastmcp",
"run"
]
}
}
}
Replace
/path/to/mcp-invoice-generatorwith the absolute path where you cloned the repository.
Docker
The project includes a multi-stage Dockerfile optimised for production:
- Builder stage β installs dependencies with
uvusing layer caching - Runtime stage β minimal
python:3.13-slimimage with only the virtual environment copied over - Typst binary copied from the official
ghcr.io/typst/typstimage - Runs as a non-root user (
nonroot, uid 999) - Exposes the MCP server via
uvicornon port8000
# Build the image
make build
# Run the container (mounts data/, outputs/ and templates/, exposes port 8000)
make start
data/billing.tomlmust exist before running the container β it is mounted at runtime and is never baked into the image.
MCP Tools
get_default_values β Returns all default billing data from billing.toml, including available issuers, services, and clients.
generate_invoice β Generates a PDF invoice from flat input fields.
| Parameter | Type | Default | Description |
|---|---|---|---|
invoice_number |
str |
β | Invoice number |
invoice_date |
date |
today | Invoice date (ISO 8601) |
issuer_name |
str |
β | Issuer full name |
issuer_address |
str |
β | Issuer street address |
issuer_city |
str |
β | Issuer city |
issuer_postal |
str |
β | Issuer postal code |
issuer_email |
str |
β | Issuer email address |
issuer_siren |
str |
β | Issuer SIREN number |
issuer_siret |
str |
β | Issuer SIRET number |
issuer_vat_number |
str |
β | Issuer VAT number |
issuer_iban |
str |
β | Issuer IBAN |
issuer_bic |
str |
β | Issuer BIC / SWIFT code |
issuer_tax_rate |
float |
β | VAT rate (e.g. 0.2 for 20%) |
service_daily_rate |
int |
β | Daily rate in euros (TJM) |
service_description |
str |
β | Service description line on invoice |
service_days |
int |
β | Number of days worked |
client_name |
str |
β | Client company name |
client_address |
str |
β | Client street address |
client_city |
str |
β | Client city |
client_postal |
str |
β | Client postal code |
client_siren |
str |
β | Client SIREN number |
client_vat_number |
str |
β | Client VAT number |
Returns the path to the generated PDF file.
Template
The invoice template is located in templates/invoice.typ and is written in Typst, a modern typesetting language. It receives all invoice fields as named parameters and is compiled to PDF by the typst Python package.
The included template is designed for French freelancers: it is based on a daily rate (TJM), computes subtotal, VAT, and total, and formats all monetary values using French conventions (e.g. 3 000,00 β¬).
To customise the invoice layout, edit templates/invoice.typ directly.
Template parameters
All parameters are passed as flat named arguments to the Typst template function.
Issuer
| Parameter | Type | Description |
|---|---|---|
issuer_name |
str |
Full name |
issuer_address |
str |
Street address |
issuer_city |
str |
City |
issuer_postal |
str |
Postal code |
issuer_email |
str |
Email address |
issuer_siren |
str |
SIREN number |
issuer_siret |
str |
SIRET number |
issuer_vat_number |
str |
VAT number |
issuer_iban |
str |
IBAN |
issuer_bic |
str |
BIC / SWIFT code |
issuer_tax_rate |
float |
VAT rate (e.g. 0.2 for 20%) |
Client
| Parameter | Type | Description |
|---|---|---|
client_name |
str |
Company name |
client_address |
str |
Street address |
client_city |
str |
City |
client_postal |
str |
Postal code |
client_siren |
str |
SIREN number |
client_vat_number |
str |
VAT number |
Service
| Parameter | Type | Description |
|---|---|---|
service_daily_rate |
int |
Daily rate in euros (TJM) |
service_description |
str |
Description line on invoice |
service_days |
int |
Number of days worked |
Invoice
| Parameter | Type | Description |
|---|---|---|
invoice_number |
str |
Invoice number |
invoice_date |
str |
Invoice date (DD/MM/YYYY) |
Development
make dev
Starts the server with --reload via dev.fastmcp.json.
Make Commands
| Command | Description |
|---|---|
make dev |
Start server in development mode with auto-reload |
make test |
Run tests with coverage report |
make build |
Build the Docker image |
make start |
Run the container in production |
make run-inspector |
Launch the MCP inspector |
License
MIT β see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.