MCP server for Hungarian national legislation (Nemzeti Jogszabalytar, njt.jog.gov.hu) — fetch legislation by native ELI with verifiable citations.
Project description
hu-eli-mcp
An MCP server for Hungary's official national legislation database, the Nemzeti
Jogszabalytar (NJT, njt.jog.gov.hu), maintained by MKIFK. It gives an AI agent a piece of
Hungarian legislation resolved by its native ELI (European Legislation Identifier), with a
verifiable citation: the ELI itself, a human-readable citation, and a link to the official
source.
Part of the eu-legal-mcp line by MateMatic — one connector per EU member state, the same citation contract everywhere.
On ELI. Unlike the Netherlands and Sweden (earlier connectors in this line, neither of which publishes native ELI), Hungary has a genuine, documented national ELI implementation since 2023 (
njt.jog.gov.hu/eli/urisemak).eli_uriis therefore the real/eli/URI the tool resolved — never a substitute identifier. SeeDISCOVERY.md.
Tools
| Tool | What it does |
|---|---|
hu_get_act(year, serial) |
Metadata for a Hungarian Act (torveny) by ELI, e.g. year 2013, serial 5 (the Civil Code). No issuer code needed. |
hu_get_legislation(doc_type, year, issuer, serial) |
Metadata for any other legislation (decrees etc.) by ELI — type, year, issuer (case-sensitive) and serial. |
hu_get_text(doc_type, year, serial, issuer=None) |
The full document HTML content for either an Act or other legislation. |
hu_list_doc_types() |
Valid NJT document-type codes (e.g. TV=Act, R=decree). |
hu_list_issuers() |
Valid NJT issuer codes (e.g. Korm=Government) — note the exact casing matters. |
Every response carries the citation contract:
eli_uri— the native ELI URI resolved, e.g.https://njt.jog.gov.hu/eli/TV/2013/5.human_readable_citation— built from the parsed title + subtitle, e.g. "2013. évi V. törvény (a Polgári Törvénykönyvről)".source_url— the browsablenjt.jog.gov.hu/jogszabaly/...document page.
No free-text search
NJT has no REST/JSON API and its search/browse UI is a JavaScript SPA requiring a session
(not usable headlessly). Documents must be addressed by a known ELI — use
hu_list_doc_types / hu_list_issuers to discover valid codes, then hu_get_act /
hu_get_legislation. An unresolvable ELI (wrong year/serial/issuer, or wrong issuer-code
case) surfaces as not_found — NJT itself redirects it to a search-assist page rather than
a 404.
Install
pip install -e ".[dev]"
Register it with your MCP client (see .mcp.json.example):
{
"mcpServers": {
"hu-eli-mcp": {
"command": "hu-eli-mcp",
"env": {
"HU_ELI_BASE_URL": "https://njt.jog.gov.hu",
"HU_ELI_CACHE_DIR": "~/.matematic/cache/hu-eli",
"HU_ELI_AUDIT_DIR": "~/.matematic/audit"
}
}
}
}
Design
- Public data only. Read-only against the keyless, official
njt.jog.gov.hu; nothing is sent beyond the ELI path being resolved. Honorsrobots.txt(never calls/search/*). - Audit log. Every call appends one JSON line to
~/.matematic/audit/hu-eli-mcp.jsonl(AI Act art. 12 record-keeping). - Vendor-neutral. No LLM provider, no telemetry; own backoff + on-disk cache.
- No fabrication. The ELI, title and citation are parsed from the resolved document page. If NJT's markup changes, the connector fails loudly rather than returning stale or invented data.
See CONSTITUTION.md (the 4 principles) and DISCOVERY.md (how the source was mapped,
including the njt.hu → njt.jog.gov.hu domain discovery and the issuer-code casing gotcha).
Tests
pytest tests/test_instructions_drift.py # offline
pytest tests/test_smoke.py # live NJT
Licence
Apache-2.0. The Hungarian legislation served is official public data of Hungary; this connector adds no rights over it.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hu_eli_mcp-0.1.0.tar.gz.
File metadata
- Download URL: hu_eli_mcp-0.1.0.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4173b080b453b3a32722d9ac154ce06ee14763e01ec3d1699cd3e8424769eed3
|
|
| MD5 |
f0da22603d4abd6db65632d41ff9a6f8
|
|
| BLAKE2b-256 |
6ba3d67a9b4559bc897f5d83ce3e0a2d6e4eb3c122878c4d1b9c1f85543d873b
|
File details
Details for the file hu_eli_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: hu_eli_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cec697daded8912cc8e24fb12def152487375bb83b2946f6fed32c68011c1a3
|
|
| MD5 |
0d51991eca1cda730aeee84073f60db0
|
|
| BLAKE2b-256 |
92b0b118c549aac29165eaed9335d22e81604dba50f4e793f0a7ca31b125c76c
|