Skip to main content
ClaudeWave

MCP connector for Italian legislation via Normattiva (Akoma Ntoso / URN:NIR / ELI). The EU's largest legal market. Keyless, point-in-time (multivigenza), ELI-grounded. Part of the eu-legal-mcp production line.

MCP ServersOfficial Registry0 stars0 forksPythonApache-2.0Updated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/25/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · -e
Claude Code CLI
claude mcp add it-eli-mcp -- python -m -e
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "it-eli-mcp": {
      "command": "python",
      "args": ["-m", "pip"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install first: pip install -e
Use cases

MCP Servers overview

# it-eli-mcp

<!-- mcp-name: io.github.matematicsolutions/it-eli-mcp -->

An MCP server for **Italian law**, in two layers:

- **Legislation** via [Normattiva](https://www.normattiva.it), the official portal of the
  Ministero della Giustizia. It fetches acts as **Akoma Ntoso** with verifiable **URN:NIR** and
  **ELI** identifiers, and returns the text as it stood on any past date (*multivigenza*). Live and
  keyless.
- **Constitutional case law** (Corte Costituzionale): a local, keyless full-text index of every
  decision since 1956, each with its native **ECLI**, built from the Court's official open data.
- **Supreme Court case law** (Corte di Cassazione): live, keyless full-text search over SentenzeWeb,
  the Court's own free public search engine - civil and criminal decisions, full OCR text, no local
  index to build.
- **Administrative case law** (Consiglio di Stato, C.G.A.R.S., TAR): live, keyless search over the
  Giustizia Amministrativa portal's own public decision search - one backend for the whole
  administrative jurisdiction, 3.4M+ provvedimenti with native ECLI and structured full text.

Italy has the EU's largest legal profession by headcount - roughly 240,000 lawyers per CCBE
figures, ahead of Germany and Spain. No live, keyless MCP connector covered its statute book. This
one does, and it also covers the constitutional case law.

Part of the MateMatic `eu-legal-mcp` production line: the Italian sibling of `de-eli-mcp` (Germany)
and `sejm-eli-mcp` (Poland), built on the same architecture and citation contract against the
Italian source.

> **No JSON API.** Normattiva does not publish a REST API. This connector drives the same
> session-based flow a browser uses - resolve a URN, read the act page, fetch its Akoma Ntoso
> export - so every act comes back as structured XML with its ELI intact. See `DISCOVERY.md`.
>
> **Licence.** Italian official legal texts are outside copyright (art. 5, l. 633/1941), and
> Normattiva declares CC-BY-4.0 for its data from 2026-01-01. This connector relays individual
> acts on request, with attribution and a `source_url`; it does not bulk-harvest the database
> (Normattiva's terms restrict that). Every response carries a `dataset_note`. (A practitioner's
> read, not formal legal advice.)
>
> **Cassazione is NOT Italgiure/ItalgiureWeb.** The Court's full-database search
> (ItalgiureWeb, 35M+ documents) is free only for the judiciary; practitioners pay a
> subscription. This connector does **not** use that service. It queries **SentenzeWeb**
> (`italgiure.giustizia.it/sncass`), a **separate, free, public** search engine the Court
> itself publishes, under the **Italian Open Data License (IODL 2.0)**, with no authentication
> - verified live during development (see `DISCOVERY.md`). Coverage is narrower than the full
> Italgiure database but real: 420K+ civil and criminal decisions with full OCR text.

## Legislation tools (Normattiva, live)

| Tool | What it does |
|---|---|
| `it_list_codes` | The major Italian codes and consolidated acts (Codice civile, penale, di procedura, privacy/GDPR, CAD, D.Lgs. 231/2001, Costituzione, L. 241/1990) with their canonical URN. |
| `it_resolve` | Turns act coordinates (`act_type`, `year`, `number`) into a canonical, resolvable URN:NIR. Offline. |
| `it_get_act` | Fetches act metadata (title, date, ELI, article count) for a code name, URN, ELI path, or normattiva.it URL. |
| `it_get_text` | Fetches the text of a whole act or a single `article` - with `at_date` for the point-in-time version. |

## Constitutional case-law tools (Corte Costituzionale, local index)

| Tool | What it does |
|---|---|
| `it_case_search` | Full-text search over the decisions (heading, reasoning, operative part). Filters by year and type (sentenza/ordinanza). Accent-insensitive. |
| `it_case_get_decision` | The full text of one decision, by ECLI (`ECLI:IT:COST:2024:1`) or by year + number. |
| `it_case_recent` | The most recent decisions (newest first). |
| `it_case_stats` | Index coverage: total decisions, year range, counts by type, last build time. |

The case-law tools read a local SQLite index that is **provisioned automatically on the first
call** - no setup step. On first use the server downloads a small, sha256-verified pre-built
`cost.sqlite.gz` from the GitHub release (built and attached by CI on each release) and
decompresses it, or, if none is published, builds the index from the Court's open data (all
decisions since 1956); the index is then cached under `~/.matematic` and every later call
queries it offline. `it_case_stats` reports `provenance` and `ingested_at` so you can see how
fresh it is.

To refresh, or to pre-build it ahead of time (e.g. in an offline deployment), run:

```bash
italy-eli-mcp-caselaw-ingest
```

Tuning env vars: `IT_ELI_CASELAW_INDEX_URL` (override/disable the pre-built download),
`IT_ELI_CASELAW_INDEX_SHA256` (pin the checksum), `IT_ELI_CASELAW_AUTOBUILD=0` (skip the
automatic local build). The legislation tools need no index; they fetch live.

## Supreme Court case-law tools (Corte di Cassazione, SentenzeWeb, live)

| Tool | What it does |
|---|---|
| `it_cassazione_search` | Full-text search over decision bodies. Filters: `chamber` ('civile'/'penale'), `sub_chamber` ('lavoro'/'tributaria'), `anno` (year). Returns ranked hits with a highlighted snippet. |
| `it_cassazione_get` | The full text of one decision by its SentenzeWeb `sic_id` (from a search hit). |

No ingest step - every call queries SentenzeWeb live. Coverage: civil (`snciv`, ~190K) and
criminal (`snpen`, ~238K) decisions, including the Labour (`szdec:L`, ~30K) and Tax (`szdec:5`,
~59K) sub-chambers, full OCR text.

## Administrative case-law tools (Consiglio di Stato, C.G.A.R.S., TAR, live)

| Tool | What it does |
|---|---|
| `it_ga_search` | Full-text search and/or decision-number lookup over the Giustizia Amministrativa portal - one backend for the whole administrative jurisdiction (3.4M+ provvedimenti). Filters: `sede`, `tipo`, `numero`, `anno`. Hits carry the court's native ECLI. |
| `it_ga_get_decision` | The full text of one decision by its `document_url` (taken verbatim from a search hit). |

No ingest step - every call queries the portal's own public decision search live.

## Citation verification (anti-hallucination)

| Tool | What it does |
|---|---|
| `it_verify_citations` | Extracts Italian legal citations from any text (a drafted answer, a memo, a contract clause) and verifies each one against its source. Statute citations (`art. 2043 c.c.`, `art. 5 della legge 241/1990`, `artt. 1341 e 1342 c.c.`, commi) are checked against the live Normattiva act, article by article; `ECLI:IT:COST:*` citations are checked against the local Constitutional Court index. |
| `it_coverage` | Declare what this connector covers, when each family was captured, and - explicitly - what it does NOT cover. Every gap carries a fallback. |

What it reports, per citation and overall:

- **Existence with a range hint.** A cited article that does not exist comes back as `not_found`
  with a hint of what does exist: `art. 9999 does not exist in this act; the act has 372
  articles, numbered art. 1-372`.
- **Optional content check.** A parenthetical description right after a citation
  (`art. 2043 c.c. (risarcimento per fatto illecito)`) is compared with the real provision using
  a character-trigram match. A mismatch is a review signal (`content_mismatch`), never a hard
  block - paraphrase is legitimate.
- **Hard semantics.** When any cited article does not exist, the result status is
  `HALLUCINATION_DETECTED` and the tool response carries `isError=true`, so a calling model
  cannot mistake it for a passed check. When the text contains no citations at all, the status
  is `NO_CITATIONS_FOUND` - explicitly NOT a verification success.
- **Structured `gaps`.** Everything the tool could not verify is listed as a typed gap
  (`out_of_corpus`, `unparseable_citation`, `act_unresolvable`, `upstream_unavailable`,
  `comma_not_checkable`) instead of being hidden in prose. An act Normattiva cannot resolve is a
  gap, not a hallucination: existence is unknown, not disproven. Cassazione and
  administrative-court ECLIs are out of the local corpus; verify those with
  `it_cassazione_search` / `it_ga_search`.

```
it_verify_citations(text="L'art. 2043 c.c. e l'art. 9999 della legge 241/1990 si applicano.")
→ status: "HALLUCINATION_DETECTED" (isError=true)
  citations: [
    {raw: "art. 2043 c.c.", status: "verified", ...},
    {raw: "art. 9999 della legge 241/1990", status: "not_found",
     range_hint: "art. 9999 does not exist in this act; the act has <N> articles, ..."}
  ]
  gaps: []
```

The parse-verify-report loop is adapted from `chrisryugj/korean-law-mcp` (MIT) - see
`THIRD_PARTY.md`. The content matcher uses character trigrams (the Korean original uses bigrams,
which fit an agglutinative script; trigrams discriminate better for Italian).

Every legislation response carries the citation contract: `eli_uri` (e.g.
`eli/id/1990/08/18/090G0294/CONSOLIDATED`), `urn` (e.g. `urn:nir:stato:legge:1990-08-07;241`),
`human_readable_citation` (e.g. `Legge 7 agosto 1990, n. 241`), and `source_url`.

## How it identifies an act

- **URN:NIR** - `urn:nir:{authority}:{type}:{date};{number}`. A partial URN with the year alone
  (`urn:nir:stato:legge:1990;241`) also resolves, so you can cite an act you only know as
  "L. 241/1990".
- **ELI** - `eli/id/{year}/{month}/{day}/{code}/CONSOLIDATED`, read from the act itself. Never
  invented.

## Examples

```
it_list_codes()
→ [{key: "codice civile", urn: "urn:nir:stato:regio.decreto:1942-03-16;262", ...}, ...]

it_resolve(act_type="d.lgs", year=2001, number=231)
→ {urn: "urn:nir:stato:decreto.legislativo:2001;231",
   human_readable_citation: "Decreto legislativo n. 231/2001", source_url: "..."}

it_get_text(reference="codice civile", article="2043")
→ art. 2043 c.c. (Risarcimento per fatto illecito), with eli_uri + source_url

it_get_text(reference=

What people ask about it-eli-mcp

What is matematicsolutions/it-eli-mcp?

+

matematicsolutions/it-eli-mcp is mcp servers for the Claude AI ecosystem. MCP connector for Italian legislation via Normattiva (Akoma Ntoso / URN:NIR / ELI). The EU's largest legal market. Keyless, point-in-time (multivigenza), ELI-grounded. Part of the eu-legal-mcp production line. It has 0 GitHub stars and its last recorded update is dated 2026-08-24.

How do I install it-eli-mcp?

+

You can install it-eli-mcp by cloning the repository (https://github.com/matematicsolutions/it-eli-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is matematicsolutions/it-eli-mcp safe to use?

+

Our security agent has analyzed matematicsolutions/it-eli-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains matematicsolutions/it-eli-mcp?

+

matematicsolutions/it-eli-mcp is maintained by matematicsolutions. The last recorded GitHub activity is dated 2026-08-24, with 0 open issues.

Are there alternatives to it-eli-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy it-eli-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: matematicsolutions/it-eli-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/matematicsolutions-it-eli-mcp)](https://claudewave.com/repo/matematicsolutions-it-eli-mcp)
<a href="https://claudewave.com/repo/matematicsolutions-it-eli-mcp"><img src="https://claudewave.com/api/badge/matematicsolutions-it-eli-mcp" alt="Featured on ClaudeWave: matematicsolutions/it-eli-mcp" width="320" height="64" /></a>

More MCP Servers

it-eli-mcp alternatives