Dichiarino
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., "@DichiarinoCalcola IRPEF per reddito 30.000€ nel 2024"
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.
An MCP (Model Context Protocol) server that acts as an intelligent assistant for compiling the Italian Modello 730 Precompilato - the pre-filled annual income tax return.
What is Dichiarino?
Dichiarino is an MCP server that gives any compatible AI assistant (Claude Desktop, Cursor, etc.) deep knowledge of the Italian tax system and calculation tools for the 730 form. It embeds official fiscal rules, IRPEF rates, and deduction limits so the AI can guide you through your annual tax return.
Note: The Agenzia delle Entrate provides no public API for the 730 precompilato. Dichiarino works as a knowledge + calculation engine - it cannot submit your return for you. Always verify results with a qualified professional (CAF, commercialista, consulente del lavoro).
Related MCP server: AEAT MCP Server
Features
Tool | Description |
| IRPEF lorda from income + year (2024: 23%/35%/43%) |
| Work income tax credit - formula per bracket + €65 bonus |
| Detrazioni for spouse, children ≥21, other dependants |
| Quadro E deductions - medical, mortgage, renovation, university… |
| Is this expense deductible? Which quadro? How much? |
| Validate + parse Italian codice fiscale (check digit algorithm) |
| Full 730 result - rimborso or debito |
| Step-by-step guide for any Quadro (A–W, M, T) |
| Documents needed for a specific expense type |
| Personalised compilation checklist |
| Regional IRPEF surcharge for all 20 Italian regions |
| Validate CU (Certificazione Unica) fields for consistency |
Resources:
dichiarino://aliquote/{anno}- IRPEF brackets and ratesdichiarino://quadri/{nome}- Full instructions for each Quadrodichiarino://scadenze/{anno}- Key deadlinesdichiarino://regioni- Regional surcharge tabledichiarino://detrazioni- Full deduction limits table
Agent Skills
In addition to the MCP server, Dichiarino ships a set of portable Agent Skills
in the skills/ folder - standalone instruction packages compatible with Claude, Cursor,
and any agentskills.io-supported tool. They work without the MCP server but are enhanced when it is connected.
Skill | When to use |
Compute IRPEF, brackets, detrazioni lavoro, 2025 cuneo fiscale | |
Fill in any quadro of the 730 form step by step | |
Validate and decode a codice fiscale | |
Calculate Quadro E deductions and limits | |
Generate a personalised document checklist | |
Parse and explain a Certificazione Unica (CU) |
See skills/README.md for installation instructions.
Requirements
Python 3.11+
uv (recommended) or pip
Installation
# Clone the repo
git clone https://github.com/gsaccardi/dichiarino-mcp.git
cd dichiarino-mcp
# Install with uv
uv syncUsage
With Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"dichiarino": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/dichiarino-mcp",
"run",
"dichiarino"
]
}
}
}With Cursor or other MCP clients
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"dichiarino": {
"command": "uv",
"args": ["--directory", "/path/to/dichiarino-mcp", "run", "dichiarino"]
}
}
}Run directly
uv run dichiarino
# or
uv run python -m dichiarino.mainExample Interactions
Once connected to Claude Desktop:
You: Quanto IRPEF devo pagare su un reddito di 35.000€?
Claude: [calls calcola_irpef + calcola_detrazione_lavoro]
IRPEF lorda: 8.890€
Detrazione lavoro: 1.565€ + bonus 65€
IRPEF netta stimata: 7.260€You: Ho speso 1.200€ dal medico quest'anno. Cosa posso detrarre?
Claude: [calls calcola_oneri]
Spese sanitarie: 1.200€ - franchigia 129,11€ = 1.070,89€ x 19% = 203,47€
Documenti necessari: fatture mediche, scontrini farmacia con CFYou: Quali quadri devo compilare? Ho lavoro dipendente, mutuo, e figli under 21.
Claude: [calls genera_checklist_730]
Quadri: Frontespizio, C (lavoro), E (mutuo 19% su max 4.000€)
⚠️ I figli under 21 non generano detrazione - coperti dall'Assegno Unico Universale
Documenti: CU datore, quietanza interessi banca, contratto mutuoDevelopment
# Install dev dependencies
uv sync --dev
# Run tests
uv run pytest
# Lint
uv run ruff check src/ tests/
# Type check
uv run mypy src/Project Structure
src/dichiarino/
├── main.py # Entry point
├── server.py # MCP server setup + registration
├── types.py # Domain types
├── calculators/ # Pure calculation functions
│ ├── irpef.py
│ ├── detrazioni_lavoro.py
│ ├── detrazioni_familiari.py
│ ├── oneri.py
│ └── addizionali.py
├── validators/
│ └── codice_fiscale.py
├── data/ # Static fiscal data (2024)
│ ├── aliquote_irpef.py
│ ├── addizionali_regionali.py
│ ├── limiti_detrazioni.py
│ └── istruzioni_quadri.py
├── tools/ # MCP tool handlers
└── resources/ # MCP resource handlers
tests/
├── calculators/ # Unit tests for fiscal math
├── validators/ # Codice fiscale tests
└── integration/ # Full MCP server integration testsTax Year Coverage
Anno di imposta | Modello | Status |
2025 | 730/2026 | ✅ Fully supported (default) |
2024 | 730/2025 | ✅ Fully supported |
2023 | 730/2024 | ✅ IRPEF brackets supported |
Attribution
This project is licensed under the Apache License 2.0. If you redistribute this software or a Derivative Work, you must include the NOTICE file and retain the following attribution:
Powered by Dichiarino - https://github.com/gsaccardi/dichiarino-mcp
See LICENSE and NOTICE for full terms.
Disclaimer
The fiscal calculations provided are for informational purposes only and do not constitute professional tax or legal advice. Always verify your tax return with a qualified professional before submission. The authors accept no liability for errors or changes in fiscal legislation.
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.
Latest Blog Posts
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/gsaccardi/dichiarino-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server