Italy Invoice MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Italy Invoice MCPIssue a fattura elettronica for €150 + 22% IVA to Mario Rossi (P.IVA 01234567890)."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Italy Invoice MCP 🇮🇹 — How can my AI agent issue a FatturaPA fattura elettronica in Italy?
Use it in 60 seconds
Paste this into your MCP client config (Claude Desktop, Cursor, Windsurf, or any MCP-capable agent):
{
"mcpServers": {
"italy-invoice": {
"type": "http",
"url": "https://inv-it.wishpool.app/mcp"
}
}
}Nothing to install. Credentials, when you need them, travel as HTTP headers on each request and are never stored — see the threat model.
Or run it yourself
Would you rather not send production credentials to a server you do not control? Deploy this identical code to your own account and point your agent at your own URL:
git clone https://github.com/junter1989k-ai/italy-invoice-mcp && cd italy-invoice-mcp && npx vercel --prodMIT-licensed. Self-hosting removes us from the picture entirely, at no cost and with no loss of function.
Remote MCP server that lets any AI agent issue Italy FatturaPA electronic invoices (fattura elettronica) and transmit them to the national SdI (Sistema di Interscambio) via Invoicetronic. It builds FatturaPA FPR12 XML (Agenzia delle Entrate v1.2 schema) and sends it under the merchant's own Invoicetronic API key. Stateless, bring-your-own credentials, never stores anything.
Live endpoint: https://inv-it.wishpool.app/mcp · Registry: app.wishpool/italy-invoice-mcp
Related MCP server: peru-invoice-mcp
Quick start
{
"mcpServers": {
"italy-invoice": {
"type": "http",
"url": "https://inv-it.wishpool.app/mcp",
"headers": {
"x-invoicetronic-key": "ik_test_<your Invoicetronic key>"
}
}
}
}Sign up at invoicetronic.com for a free ik_test_ sandbox key (no fiscal effect). An ik_live_ key transmits real invoices to the SdI — the base URL is the same, the key prefix selects the environment. Authentication is HTTP Basic with the key as the username (empty password). Your key stays with you and travels per-request; this server never stores it.
Tools
Tool | What it does |
| Build a FatturaPA FPR12 invoice from seller + buyer (P.IVA / Codice Fiscale, address) and line items (description, net unit price, IVA rate 22/10/5/4, quantity), then transmit to the SdI via Invoicetronic. Returns |
| Poll SdI status by |
Amounts are in EUR. Italian IVA rates: 22 (ordinaria), 10, 5, 4 (ridotte). Seller/buyer identified by Partita IVA and/or Codice Fiscale.
No cancel at the SdI level — to reverse an invoice you issue a credit note (nota di credito, TipoDocumento TD04) as a new invoice. Zero-rated / exempt IVA (needs a Natura code) is out of scope in v1.
Owner policy guardrails ride optional headers (x-agentpay-max-amount, x-agentpay-approval-above, x-agentpay-allowed-tools) — set by the human owner in client config; the agent cannot relax them.
IVA math (deterministic)
Per line PrezzoTotale = round2(quantity × unit_price); grouped by rate into DatiRiepilogo (ImponibileImporto, Imposta = round2(imponibile × rate / 100)); document total ImportoTotaleDocumento = imponibile + imposta. Examples:
100 + 50both @22% → imponibile 150.00 / imposta 33.00 / totale 183.00200 @22% + 100 @10%→ imponibile 300.00 / imposta 54.00 (44 + 10) / totale 354.002×50 @22% + 3×10 @10% + 1×25 @4%→ imponibile 155.00 / imposta 26.00 (22 + 3 + 1) / totale 181.00
Endpoints wrapped (Invoicetronic REST)
Base:
https://api.invoicetronic.com/v1(single base URL; auth = HTTP Basic, username = API key, empty password)Send:
POST /send— JSON{ file_name, payload (base64 FatturaPA XML), encoding: "base64", meta_data }→{ id, ... }Query:
GET /update?send_id={id}— SdI notification history (state: Inviato / Consegnato / Scartato / ImpossibilitaDiRecapito)Pre-flight validation:
POST /sendmay reply422 Unprocessable Entityfor a FatturaPA rule violation(Inbound
GET /receiveexists for received invoices; not wrapped as a tool in v1.)
Develop
node test/serve.js # local server on :3234
node test/e2e.js # IVA math + FatturaPA XML structure + protocol + validation + policy + fake-key live probeSafety
Pure stateless translation layer over the Invoicetronic REST API (which wraps the national SdI). The API key travels per-request in a header, nothing is stored, and funds are never touched — this issues tax invoices, it does not move money. Privacy policy.
Sister servers
Local invoices, one family: Mexico CFDI (inv-mx) · Romania e-Factura (inv-ro) · Brazil NF-e (inv-br) · Chile DTE (inv-cl) · India GST (inv-in). Local payments in 81 countries: mcp.wishpool.app.
MIT licensed.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceEnables integration with Fatture in Cloud to manage Italian electronic invoices through natural conversation, including creating, sending, and tracking invoices and financial data.Last updated17MIT
- Alicense-qualityBmaintenanceEnables AI agents to issue Peruvian electronic invoices (factura/boleta) declared to SUNAT via Nubefact. Supports creating, querying, and canceling invoices with automatic IGV tax computation.Last updatedMIT
- Alicense-qualityBmaintenanceEnables AI agents to issue Romania e-Factura electronic invoices (factura electronica) into the national ANAF/SPV system by building UBL 2.1 CIUS-RO XML and uploading it under the merchant's own ANAF access token.Last updatedMIT
- Alicense-qualityBmaintenanceEnables AI agents to issue Poland structured e-invoices (faktura ustrukturyzowana) through KSeF 2.0, handling FA(3) XML building, encrypted session flow, and KSeF number retrieval.Last updatedMIT
Related MCP Connectors
Chile DTE for AI agents - boleta/factura electronica via OpenFactura or LibreDTE. Stateless BYO.
Validate EU, UK, AU VAT numbers for AI agents. EU ViDA e-invoicing compliance.
Peru CPE invoices for AI agents - issue, query, void facturas/boletas via SUNAT (2 backends).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/junter1989k-ai/italy-invoice-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server