Italian e-invoicing with Fatture in Cloud. Create, send to SDI, manage clients.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fattureincloud": {
"env": {
"FIC_COMPANY_ID": "123456",
"FIC_ACCESS_TOKEN": "a/xxxxx.yyyyy.zzzzz",
"FIC_SENDER_EMAIL": "fatturazione@tuaazienda.it"
},
"args": [
"/percorso/completo/fattureincloud-mcp/server.py"
],
"command": "/percorso/completo/fattureincloud-mcp/venv/bin/python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
🇮🇹 Italiano | 🇬🇧 English
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.aringad/fattureincloud-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server that connects Claude (Desktop, Code, or any MCP client) to FattureInCloud, the leading Italian SaaS for electronic invoicing. Manage invoices, credit notes, proformas, clients, suppliers, cost/revenue centers, and supplier expenses through natural language. Italy mandates B2B/B2C e-invoicing through the Sistema di Interscambio (SDI) — this server brings AI-assisted billing to that compliance-driven workflow.
⚠️ Unofficial integration. Not affiliated with, endorsed by, or sponsored by TeamSystem S.p.A., owner of the FattureInCloud trademark. The trademark is used here for descriptive purposes only.
| Tool | Description |
|---|---|
list_invoices | List issued invoices / credit notes / proformas by year / month |
get_invoice | Full document detail by ID |
get_pdf_url | PDF URL and web link for a document |
list_clients | List clients with optional filter |
get_company_info | Connected company info |
create_client | Create a new client |
update_client | Update an existing client |
create_invoice | Create a draft invoice (optional revenue_center) |
create_credit_note | Create a draft credit note (optional revenue_center) |
create_proforma | Create a draft proforma (optional revenue_center) |
convert_proforma_to_invoice | Convert a proforma into a draft electronic invoice (optional revenue_center) |
update_document | Partial update of a draft document (optional revenue_center) |
duplicate_invoice | Duplicate an invoice with a new date (optional revenue_center) |
delete_invoice | Delete a draft document |
send_to_sdi | Send invoice / credit note to the Italian e-invoice system (SDI) |
get_invoice_status | E-invoice status for a document |
send_email | Send a courtesy copy by email |
list_received_documents | List supplier documents (exposes cost_center when present) |
get_received_document | Full detail of a received document by ID |
create_received_document | Create a passive document / expense (optional cost_center) |
list_cost_centers | List configured cost / revenue centers |
get_situation | Yearly dashboard: net revenue, collected, outstanding, costs, margin |
check_numeration | Verify invoice numbering continuity |
Marking payments as "paid" is intentionally not exposed: the FattureInCloud API requires a payment account that cannot be reliably retrieved through the SDK. Use the FattureInCloud web panel for that operation.
fattureincloud.mcpb from the GitHub Releases page..mcpb file onto Claude Desktop, or use Settings → Extensions → Install from file.That's it — no Python setup, no virtualenv.
For Claude Code users or any MCP client that reads claude_desktop_config.json-style configuration:
pip install fattureincloud-mcp
Then add to your MCP client configuration (for Claude Desktop, ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"fattureincloud": {
"command": "python",
"args": ["-m", "fattureincloud_mcp"],
"env": {
"FIC_ACCESS_TOKEN": "a/xxxxx.yyyyy.zzzzz",
"FIC_COMPANY_ID": "123456",
"FIC_SENDER_EMAIL": "b
... [View full README on GitHub](https://github.com/aringad/fattureincloud-mcp#readme)