fr-eli-mcp 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fr_eli_mcp-0.1.0/.github/workflows/release.yml +58 -0
- fr_eli_mcp-0.1.0/.gitignore +27 -0
- fr_eli_mcp-0.1.0/.mcp.json.example +16 -0
- fr_eli_mcp-0.1.0/.publication-gate.json +4 -0
- fr_eli_mcp-0.1.0/CONSTITUTION.md +65 -0
- fr_eli_mcp-0.1.0/DISCOVERY.md +61 -0
- fr_eli_mcp-0.1.0/LICENSE +202 -0
- fr_eli_mcp-0.1.0/PKG-INFO +108 -0
- fr_eli_mcp-0.1.0/README.md +76 -0
- fr_eli_mcp-0.1.0/glama.json +4 -0
- fr_eli_mcp-0.1.0/pyproject.toml +81 -0
- fr_eli_mcp-0.1.0/server.json +22 -0
- fr_eli_mcp-0.1.0/src/fr_eli_mcp/__init__.py +4 -0
- fr_eli_mcp-0.1.0/src/fr_eli_mcp/audit.py +94 -0
- fr_eli_mcp-0.1.0/src/fr_eli_mcp/cache.py +57 -0
- fr_eli_mcp-0.1.0/src/fr_eli_mcp/citations.py +256 -0
- fr_eli_mcp-0.1.0/src/fr_eli_mcp/client.py +198 -0
- fr_eli_mcp-0.1.0/src/fr_eli_mcp/models.py +145 -0
- fr_eli_mcp-0.1.0/src/fr_eli_mcp/server.py +329 -0
- fr_eli_mcp-0.1.0/tests/conftest.py +32 -0
- fr_eli_mcp-0.1.0/tests/fixtures/consult_article.json +112 -0
- fr_eli_mcp-0.1.0/tests/fixtures/consult_juri.json +152 -0
- fr_eli_mcp-0.1.0/tests/fixtures/consult_loda.json +533 -0
- fr_eli_mcp-0.1.0/tests/fixtures/search_code.json +76 -0
- fr_eli_mcp-0.1.0/tests/fixtures/search_juri.json +417 -0
- fr_eli_mcp-0.1.0/tests/fixtures/search_loda.json +164 -0
- fr_eli_mcp-0.1.0/tests/test_instructions_drift.py +76 -0
- fr_eli_mcp-0.1.0/tests/test_parse.py +94 -0
- fr_eli_mcp-0.1.0/tests/test_smoke.py +59 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
name: release
|
|
2
|
+
|
|
3
|
+
# Trusted publishing to PyPI via GitHub OIDC (no API token stored) + MCP Registry.
|
|
4
|
+
# Trigger: push a version tag, e.g. `git tag v0.1.0 && git push origin v0.1.0`.
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
push:
|
|
8
|
+
tags:
|
|
9
|
+
- "v*"
|
|
10
|
+
workflow_dispatch: {} # manual re-run of the MCP Registry publish without bumping the package version
|
|
11
|
+
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
id-token: write # required for PyPI trusted publishing (OIDC) and registry login
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
build-and-publish-pypi:
|
|
18
|
+
if: github.event_name == 'push' # only on a version tag; skipped on manual dispatch
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
environment: pypi
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v4
|
|
23
|
+
|
|
24
|
+
- name: Set up Python
|
|
25
|
+
uses: actions/setup-python@v5
|
|
26
|
+
with:
|
|
27
|
+
python-version: "3.12"
|
|
28
|
+
|
|
29
|
+
- name: Install build tooling
|
|
30
|
+
run: python -m pip install --upgrade build
|
|
31
|
+
|
|
32
|
+
- name: Build sdist + wheel
|
|
33
|
+
run: python -m build
|
|
34
|
+
|
|
35
|
+
- name: Publish to PyPI (trusted publishing, no token)
|
|
36
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
37
|
+
|
|
38
|
+
publish-mcp-registry:
|
|
39
|
+
needs: build-and-publish-pypi
|
|
40
|
+
# run after a successful PyPI publish, OR standalone on manual dispatch
|
|
41
|
+
if: always() && (github.event_name == 'workflow_dispatch' || needs.build-and-publish-pypi.result == 'success')
|
|
42
|
+
runs-on: ubuntu-latest
|
|
43
|
+
permissions:
|
|
44
|
+
contents: read
|
|
45
|
+
id-token: write # OIDC login to the MCP Registry
|
|
46
|
+
steps:
|
|
47
|
+
- uses: actions/checkout@v4
|
|
48
|
+
|
|
49
|
+
- name: Install mcp-publisher
|
|
50
|
+
run: |
|
|
51
|
+
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_amd64.tar.gz" | tar xz mcp-publisher
|
|
52
|
+
sudo mv mcp-publisher /usr/local/bin/
|
|
53
|
+
|
|
54
|
+
- name: Login to MCP Registry (GitHub OIDC)
|
|
55
|
+
run: mcp-publisher login github-oidc
|
|
56
|
+
|
|
57
|
+
- name: Publish server.json to MCP Registry
|
|
58
|
+
run: mcp-publisher publish
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
.venv/
|
|
3
|
+
__pycache__/
|
|
4
|
+
*.py[cod]
|
|
5
|
+
*.egg-info/
|
|
6
|
+
dist/
|
|
7
|
+
build/
|
|
8
|
+
.pytest_cache/
|
|
9
|
+
.mypy_cache/
|
|
10
|
+
.ruff_cache/
|
|
11
|
+
|
|
12
|
+
# Secrets / local config (NEVER source) - PISTE OAuth credentials live here
|
|
13
|
+
.env
|
|
14
|
+
.mcp.json
|
|
15
|
+
|
|
16
|
+
# Local runtime (never source)
|
|
17
|
+
.matematic/
|
|
18
|
+
*.log
|
|
19
|
+
|
|
20
|
+
# Live API probe scratch (raw dumps - not part of the package)
|
|
21
|
+
_probe/
|
|
22
|
+
|
|
23
|
+
# OS
|
|
24
|
+
.DS_Store
|
|
25
|
+
Thumbs.db
|
|
26
|
+
|
|
27
|
+
# Note: tests/fixtures/* ARE committed - public Legifrance data needed for offline tests.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"fr-eli-mcp": {
|
|
4
|
+
"command": "fr-eli-mcp",
|
|
5
|
+
"env": {
|
|
6
|
+
"FR_ELI_ENV": "sandbox",
|
|
7
|
+
"FR_ELI_OAUTH_URL": "https://sandbox-oauth.piste.gouv.fr/api/oauth/token",
|
|
8
|
+
"FR_ELI_BASE_URL": "https://sandbox-api.piste.gouv.fr/dila/legifrance/lf-engine-app",
|
|
9
|
+
"FR_ELI_CLIENT_ID": "REPLACE_WITH_YOUR_PISTE_CLIENT_ID",
|
|
10
|
+
"FR_ELI_CLIENT_SECRET": "REPLACE_WITH_YOUR_PISTE_CLIENT_SECRET",
|
|
11
|
+
"FR_ELI_CACHE_DIR": "~/.matematic/cache/fr-eli",
|
|
12
|
+
"FR_ELI_AUDIT_DIR": "~/.matematic/audit"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Constitution of fr-eli-mcp
|
|
2
|
+
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Date: 2026-06-24
|
|
5
|
+
Licence: Apache-2.0
|
|
6
|
+
|
|
7
|
+
`fr-eli-mcp` is an MCP server for the French Legifrance API exposed through PISTE
|
|
8
|
+
(`piste.gouv.fr`). It searches consolidated legislation (LODA laws & decrees, codes) and case law
|
|
9
|
+
(JURI), returning verifiable citations. Unlike the keyless connectors in this line, Legifrance
|
|
10
|
+
requires OAuth2 credentials.
|
|
11
|
+
|
|
12
|
+
The 4 principles below are inherited from the `eu-legal-mcp` line Constitution (Article IV).
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Art. 1. Public data only
|
|
17
|
+
|
|
18
|
+
Legifrance is the official, public source of French law. The server is read-only against the
|
|
19
|
+
Legifrance API and sends nothing beyond the search query / document id it is asked for. The OAuth2
|
|
20
|
+
credentials authenticate the *application*, not an end user, and are read from the environment only
|
|
21
|
+
(`FR_ELI_CLIENT_ID` / `FR_ELI_CLIENT_SECRET`) - never hard-coded, never logged.
|
|
22
|
+
|
|
23
|
+
## Art. 2. Mandatory audit log
|
|
24
|
+
|
|
25
|
+
Every tool call MUST append one JSON line to `~/.matematic/audit/fr-eli-mcp.jsonl`
|
|
26
|
+
(ts / tool / input_hash SHA-256 / output_count_or_size / duration_ms / status). Inability to write =
|
|
27
|
+
the tool returns an error, it does not silently skip.
|
|
28
|
+
|
|
29
|
+
## Art. 3. Vendor neutrality
|
|
30
|
+
|
|
31
|
+
No tool hardcodes an LLM provider, assumes a model, or adds commercial telemetry. The server talks
|
|
32
|
+
only to the PISTE OAuth + Legifrance endpoints and the local filesystem. The OAuth token is cached
|
|
33
|
+
in process memory only (never persisted to disk) and refreshed on expiry or on a 401.
|
|
34
|
+
|
|
35
|
+
## Art. 4. ELI / ECLI citations and a human-readable citation are mandatory
|
|
36
|
+
|
|
37
|
+
Every response MUST carry the citation contract:
|
|
38
|
+
- `eli_uri`: a **stable, resolvable Legifrance resource URL**. The PISTE `lf-engine-app` consult
|
|
39
|
+
API returns the native `eli` / `idEli` fields *null* for legislation, so we DO NOT synthesize a
|
|
40
|
+
`/eli/...` string from prose - we carry the CID-keyed legifrance.gouv.fr URL that resolves, and we
|
|
41
|
+
say so (`eli_note`). Rule of the line: **state what you do not have; never fabricate an ELI.**
|
|
42
|
+
- `human_readable_citation`: the French citation convention (e.g. "LOI n° 2016-1321 du 7 octobre
|
|
43
|
+
2016 pour une République numérique"; "Code civil, art. 9"; the JURI title for a decision).
|
|
44
|
+
- `source_url`: the legifrance.gouv.fr page for the item.
|
|
45
|
+
- For case law, `ecli` carries the **native, authoritative ECLI** returned by the API
|
|
46
|
+
(e.g. `ECLI:FR:CCASS:2025:C100399`) - cited verbatim, never invented.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Open points
|
|
51
|
+
|
|
52
|
+
1. **ELI** - if/when the PISTE API (or a dedicated ELI endpoint) exposes a populated native ELI for
|
|
53
|
+
legislation, `eli_uri` should switch to it. Until then it is the resolvable CID-keyed URL.
|
|
54
|
+
2. **Distribution** - Legifrance requires a PISTE key, so this connector ships via the PATRON /
|
|
55
|
+
appliance channel (governed), not casual drop-in download (see the line's distribution note).
|
|
56
|
+
3. **Sandbox vs production** - the defaults target the PISTE *sandbox*. Production uses the
|
|
57
|
+
`oauth.piste.gouv.fr` / `api.piste.gouv.fr` hosts (set via `FR_ELI_OAUTH_URL` / `FR_ELI_BASE_URL`).
|
|
58
|
+
4. **Coverage** - MVP covers LODA + codes + JURI consult. Other fonds (JORF, CETAT, CONSTIT, KALI)
|
|
59
|
+
are later features.
|
|
60
|
+
|
|
61
|
+
## Constitution evolution
|
|
62
|
+
|
|
63
|
+
Changes to art. 1-4 follow SEMVER + an entry in `CHANGELOG.md` + a `pyproject.toml` bump.
|
|
64
|
+
|
|
65
|
+
First version: 2026-06-24. Author: Wieslaw Mazur / MateMatic.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Discovery - fr-eli-mcp (Legifrance via PISTE)
|
|
2
|
+
|
|
3
|
+
Date: 2026-06-24. Decision: **BUILD** (sandbox fully working: token + subscription + live data).
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **API:** Legifrance, exposed through PISTE (`piste.gouv.fr`). Base (sandbox):
|
|
8
|
+
`https://sandbox-api.piste.gouv.fr/dila/legifrance/lf-engine-app`.
|
|
9
|
+
- **Auth:** OAuth2 `client_credentials`. Token endpoint (sandbox):
|
|
10
|
+
`https://sandbox-oauth.piste.gouv.fr/api/oauth/token`. Body params
|
|
11
|
+
`grant_type=client_credentials` + `client_id` + `client_secret` + `scope=openid` →
|
|
12
|
+
`access_token` (`token_type=Bearer`, `expires_in=3600`, scope `openid resource.READ`).
|
|
13
|
+
- **Production:** swap the sandbox hosts for `oauth.piste.gouv.fr` / `api.piste.gouv.fr`.
|
|
14
|
+
|
|
15
|
+
Registration (account + API subscription + ToS acceptance) is a one-time human act on the PISTE
|
|
16
|
+
portal; it was completed before this build. The connector itself is fully autonomous thereafter.
|
|
17
|
+
|
|
18
|
+
## Probed live (not trusted from docs)
|
|
19
|
+
|
|
20
|
+
All endpoints are `POST` JSON under the base, with a `Bearer` token.
|
|
21
|
+
|
|
22
|
+
- `POST /search` - `{fond, recherche:{champs[…], filtres[…], pageNumber, pageSize, operateur, sort,
|
|
23
|
+
typePagination}}`. Verified for `fond` ∈ {`LODA_DATE`, `CODE_DATE`, `JURI`}. `LODA_DATE` /
|
|
24
|
+
`CODE_DATE` require a `DATE_VERSION` `singleDate` (epoch ms) filter. Results:
|
|
25
|
+
`results[].titles[]{id, cid, title}` + `nature` / `origin` / `etat`; `CODE_DATE` results also
|
|
26
|
+
carry `sections[].extracts[]{id (LEGIARTI…), num, values}`.
|
|
27
|
+
- `POST /consult/lawDecree` - `{textId (LEGITEXT…), date (YYYY-MM-DD)}` → full LODA text with
|
|
28
|
+
`id`, `cid` (JORFTEXT…), `title`, `nor`, `nature`, `dateParution`, nested `sections[].articles[]`.
|
|
29
|
+
- `POST /consult/getArticle` - `{id (LEGIARTI…)}` → `article{id, num, texte, etat, dateDebut,
|
|
30
|
+
textTitles[] (carries the code title, e.g. "Code civil"), fullSectionsTitre}`.
|
|
31
|
+
- `POST /consult/juri` - `{textId (JURITEXT…)}` → `text{id, ecli, juridiction, formation, solution,
|
|
32
|
+
numeroAffaire, dateTexte, titre, texte}`.
|
|
33
|
+
|
|
34
|
+
### Key finding - ELI is null, ECLI is native
|
|
35
|
+
|
|
36
|
+
For LODA texts and code articles the API returns `eli` / `idEli` / `idEliAlias` **null**, and there
|
|
37
|
+
are no `/eli/…` strings anywhere in the consult payloads. The act number ("2016-1321") and signature
|
|
38
|
+
date are only present inside the `title` prose string (`textNumber` / `dateTexte` are null on the
|
|
39
|
+
LODA consult). Per the line rule we therefore do **not** fabricate a `/eli/…` URI from prose; we
|
|
40
|
+
carry the stable, resolvable CID-keyed legifrance.gouv.fr URL as `eli_uri`.
|
|
41
|
+
|
|
42
|
+
JURI is different: `text.ecli` is a populated, authoritative ECLI (e.g. `ECLI:FR:CCASS:2025:C100399`).
|
|
43
|
+
This makes `fr-eli-mcp` the first connector in the line to surface a native ECLI straight from the
|
|
44
|
+
source API.
|
|
45
|
+
|
|
46
|
+
## Citation contract mapping
|
|
47
|
+
|
|
48
|
+
| Field | LODA / code article | JURI |
|
|
49
|
+
| --- | --- | --- |
|
|
50
|
+
| `eli_uri` | `https://www.legifrance.gouv.fr/loda/id/{LEGITEXT}` / `…/codes/article_lc/{LEGIARTI}` (resolvable, CID-keyed; **not** a native ELI) | `https://www.legifrance.gouv.fr/juri/id/{JURITEXT}` |
|
|
51
|
+
| `human_readable_citation` | the `title` prose ("LOI n° … du …") / "Code civil, art. 9" | the decision `titre` |
|
|
52
|
+
| `source_url` | same legifrance.gouv.fr page | same |
|
|
53
|
+
| `ecli` | - | native `text.ecli` |
|
|
54
|
+
|
|
55
|
+
## Build
|
|
56
|
+
|
|
57
|
+
3 reuse-verbatim modules (`audit.py`, `cache.py` - env `FR_ELI_*`, log `fr-eli-mcp.jsonl`), and the
|
|
58
|
+
FR-specific `client.py` (OAuth2 + in-memory token cache + 401 refresh + POST JSON), `citations.py`,
|
|
59
|
+
`models.py`, `server.py` (4 tools, `ToolError` {invalid_arg / not_found / upstream_error /
|
|
60
|
+
config_error}). Tests: offline drift + offline fixture parse + live smoke. The factory holds: the
|
|
61
|
+
infrastructure is reused, only the source adapter is new.
|
fr_eli_mcp-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fr-eli-mcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MCP server for the French Legifrance API via PISTE (legifrance.gouv.fr) — search legislation (LODA, codes) and case law (JURI) with verifiable citations and native ECLI.
|
|
5
|
+
Project-URL: Repository, https://github.com/matematicsolutions/fr-eli-mcp
|
|
6
|
+
Project-URL: Issues, https://github.com/matematicsolutions/fr-eli-mcp/issues
|
|
7
|
+
Project-URL: Homepage, https://matematic.co
|
|
8
|
+
Author-email: Matematic Solutions <kontakt@matematic.co>, Wieslaw Mazur <mazur.wieslaw2022@gmail.com>
|
|
9
|
+
License: Apache-2.0
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: ecli,eli,france,law,legaltech,legifrance,mcp,piste
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Legal Industry
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Office/Business
|
|
20
|
+
Requires-Python: >=3.11
|
|
21
|
+
Requires-Dist: anyio>=4.3
|
|
22
|
+
Requires-Dist: diskcache>=5.6
|
|
23
|
+
Requires-Dist: fastmcp>=0.2.0
|
|
24
|
+
Requires-Dist: httpx>=0.27
|
|
25
|
+
Requires-Dist: pydantic>=2.6
|
|
26
|
+
Provides-Extra: dev
|
|
27
|
+
Requires-Dist: mypy>=1.10; extra == 'dev'
|
|
28
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
|
|
29
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
30
|
+
Requires-Dist: ruff>=0.5; extra == 'dev'
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
|
|
33
|
+
# fr-eli-mcp
|
|
34
|
+
|
|
35
|
+
<!-- mcp-name: io.github.matematicsolutions/fr-eli-mcp -->
|
|
36
|
+
|
|
37
|
+
An MCP server for the **French Legifrance API** via [PISTE](https://piste.gouv.fr). It searches
|
|
38
|
+
French legislation (LODA laws & decrees, codes) and case law (JURI), and returns verbatim text with
|
|
39
|
+
verifiable citations. Part of the **eu-legal-mcp** line of national legal connectors by
|
|
40
|
+
[MateMatic](https://matematic.co).
|
|
41
|
+
|
|
42
|
+
Every response carries the citation contract: a stable `eli_uri`, a `human_readable_citation`
|
|
43
|
+
(French convention) and a resolvable `source_url`.
|
|
44
|
+
|
|
45
|
+
> **Read-only.** The server only queries Legifrance and writes a local audit log. It never modifies
|
|
46
|
+
> official text and never sends anything beyond your query / document id.
|
|
47
|
+
|
|
48
|
+
## Tools
|
|
49
|
+
|
|
50
|
+
| Tool | What it does |
|
|
51
|
+
| --- | --- |
|
|
52
|
+
| `fr_search(query, fond, page_size)` | Keyword search a `fond`: `LODA` (laws & decrees), `CODE` (codes), `JURI` (case law). Returns hits with the citation contract; `CODE` hits expose matched `article_id`s. |
|
|
53
|
+
| `fr_get_act(text_id, date)` | Consult a LODA law/decree by `LEGITEXT...` id. Returns metadata + a table of contents (`articles`). |
|
|
54
|
+
| `fr_get_text(article_id)` | Verbatim text of a single article by `LEGIARTI...` id. |
|
|
55
|
+
| `fr_get_decision(decision_id)` | A JURI court decision by `JURITEXT...` id, with its **native `ecli`**, court, formation, solution and text. |
|
|
56
|
+
|
|
57
|
+
### A note on ELI vs ECLI
|
|
58
|
+
|
|
59
|
+
France has an official ELI scheme, but the PISTE `lf-engine-app` **consult API returns the native
|
|
60
|
+
ELI field `null` for the legislation we tested**. Following this line's rule - *say what you do not
|
|
61
|
+
have, never fabricate an ELI* - `eli_uri` carries the **stable, resolvable Legifrance resource URL**
|
|
62
|
+
(CID-keyed), not a `/eli/...` string parsed from prose. Each response repeats this in `eli_note`.
|
|
63
|
+
|
|
64
|
+
Case law is different: the API returns a **native, authoritative ECLI**
|
|
65
|
+
(e.g. `ECLI:FR:CCASS:2025:C100399`), surfaced verbatim in `fr_get_decision`.
|
|
66
|
+
|
|
67
|
+
## Configuration
|
|
68
|
+
|
|
69
|
+
Legifrance requires OAuth2 application credentials from a free PISTE account
|
|
70
|
+
(`piste.gouv.fr` → *Applications* → subscribe to the Legifrance API → *OAuth Credentials*).
|
|
71
|
+
Credentials are read from the environment only:
|
|
72
|
+
|
|
73
|
+
| Variable | Meaning |
|
|
74
|
+
| --- | --- |
|
|
75
|
+
| `FR_ELI_OAUTH_URL` | OAuth token endpoint (sandbox default shown in `.mcp.json.example`). |
|
|
76
|
+
| `FR_ELI_BASE_URL` | Legifrance `lf-engine-app` base. |
|
|
77
|
+
| `FR_ELI_CLIENT_ID` | Your PISTE application client id (**required**). |
|
|
78
|
+
| `FR_ELI_CLIENT_SECRET` | Your PISTE application client secret (**required**). |
|
|
79
|
+
| `FR_ELI_CACHE_DIR` | Disk cache dir (default `~/.matematic/cache/fr-eli`). |
|
|
80
|
+
| `FR_ELI_AUDIT_DIR` | Audit log dir (default `~/.matematic/audit`). |
|
|
81
|
+
|
|
82
|
+
Copy `.mcp.json.example` to `.mcp.json` (gitignored) and fill in your credentials, or set the
|
|
83
|
+
variables in your host environment. The OAuth token is cached in memory and refreshed automatically.
|
|
84
|
+
|
|
85
|
+
## Install
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
py -3.13 -m venv .venv
|
|
89
|
+
.\.venv\Scripts\python.exe -m pip install -e ".[dev]" # Windows
|
|
90
|
+
# or: python -m pip install -e ".[dev]" # POSIX
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Tests
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
pytest tests/test_instructions_drift.py tests/test_parse.py # offline, no creds
|
|
97
|
+
pytest tests/test_smoke.py -v # live, needs PISTE creds in .env
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## Distribution
|
|
101
|
+
|
|
102
|
+
Because Legifrance requires a PISTE key, this connector is distributed through the **PATRON /
|
|
103
|
+
appliance** channel (governed), not casual drop-in download. See the eu-legal-mcp line notes.
|
|
104
|
+
|
|
105
|
+
## Licence
|
|
106
|
+
|
|
107
|
+
Apache-2.0. Legifrance content is © the French Republic / DILA and subject to the Legifrance /
|
|
108
|
+
PISTE terms of use; this software only retrieves and cites it.
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# fr-eli-mcp
|
|
2
|
+
|
|
3
|
+
<!-- mcp-name: io.github.matematicsolutions/fr-eli-mcp -->
|
|
4
|
+
|
|
5
|
+
An MCP server for the **French Legifrance API** via [PISTE](https://piste.gouv.fr). It searches
|
|
6
|
+
French legislation (LODA laws & decrees, codes) and case law (JURI), and returns verbatim text with
|
|
7
|
+
verifiable citations. Part of the **eu-legal-mcp** line of national legal connectors by
|
|
8
|
+
[MateMatic](https://matematic.co).
|
|
9
|
+
|
|
10
|
+
Every response carries the citation contract: a stable `eli_uri`, a `human_readable_citation`
|
|
11
|
+
(French convention) and a resolvable `source_url`.
|
|
12
|
+
|
|
13
|
+
> **Read-only.** The server only queries Legifrance and writes a local audit log. It never modifies
|
|
14
|
+
> official text and never sends anything beyond your query / document id.
|
|
15
|
+
|
|
16
|
+
## Tools
|
|
17
|
+
|
|
18
|
+
| Tool | What it does |
|
|
19
|
+
| --- | --- |
|
|
20
|
+
| `fr_search(query, fond, page_size)` | Keyword search a `fond`: `LODA` (laws & decrees), `CODE` (codes), `JURI` (case law). Returns hits with the citation contract; `CODE` hits expose matched `article_id`s. |
|
|
21
|
+
| `fr_get_act(text_id, date)` | Consult a LODA law/decree by `LEGITEXT...` id. Returns metadata + a table of contents (`articles`). |
|
|
22
|
+
| `fr_get_text(article_id)` | Verbatim text of a single article by `LEGIARTI...` id. |
|
|
23
|
+
| `fr_get_decision(decision_id)` | A JURI court decision by `JURITEXT...` id, with its **native `ecli`**, court, formation, solution and text. |
|
|
24
|
+
|
|
25
|
+
### A note on ELI vs ECLI
|
|
26
|
+
|
|
27
|
+
France has an official ELI scheme, but the PISTE `lf-engine-app` **consult API returns the native
|
|
28
|
+
ELI field `null` for the legislation we tested**. Following this line's rule - *say what you do not
|
|
29
|
+
have, never fabricate an ELI* - `eli_uri` carries the **stable, resolvable Legifrance resource URL**
|
|
30
|
+
(CID-keyed), not a `/eli/...` string parsed from prose. Each response repeats this in `eli_note`.
|
|
31
|
+
|
|
32
|
+
Case law is different: the API returns a **native, authoritative ECLI**
|
|
33
|
+
(e.g. `ECLI:FR:CCASS:2025:C100399`), surfaced verbatim in `fr_get_decision`.
|
|
34
|
+
|
|
35
|
+
## Configuration
|
|
36
|
+
|
|
37
|
+
Legifrance requires OAuth2 application credentials from a free PISTE account
|
|
38
|
+
(`piste.gouv.fr` → *Applications* → subscribe to the Legifrance API → *OAuth Credentials*).
|
|
39
|
+
Credentials are read from the environment only:
|
|
40
|
+
|
|
41
|
+
| Variable | Meaning |
|
|
42
|
+
| --- | --- |
|
|
43
|
+
| `FR_ELI_OAUTH_URL` | OAuth token endpoint (sandbox default shown in `.mcp.json.example`). |
|
|
44
|
+
| `FR_ELI_BASE_URL` | Legifrance `lf-engine-app` base. |
|
|
45
|
+
| `FR_ELI_CLIENT_ID` | Your PISTE application client id (**required**). |
|
|
46
|
+
| `FR_ELI_CLIENT_SECRET` | Your PISTE application client secret (**required**). |
|
|
47
|
+
| `FR_ELI_CACHE_DIR` | Disk cache dir (default `~/.matematic/cache/fr-eli`). |
|
|
48
|
+
| `FR_ELI_AUDIT_DIR` | Audit log dir (default `~/.matematic/audit`). |
|
|
49
|
+
|
|
50
|
+
Copy `.mcp.json.example` to `.mcp.json` (gitignored) and fill in your credentials, or set the
|
|
51
|
+
variables in your host environment. The OAuth token is cached in memory and refreshed automatically.
|
|
52
|
+
|
|
53
|
+
## Install
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
py -3.13 -m venv .venv
|
|
57
|
+
.\.venv\Scripts\python.exe -m pip install -e ".[dev]" # Windows
|
|
58
|
+
# or: python -m pip install -e ".[dev]" # POSIX
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Tests
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pytest tests/test_instructions_drift.py tests/test_parse.py # offline, no creds
|
|
65
|
+
pytest tests/test_smoke.py -v # live, needs PISTE creds in .env
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Distribution
|
|
69
|
+
|
|
70
|
+
Because Legifrance requires a PISTE key, this connector is distributed through the **PATRON /
|
|
71
|
+
appliance** channel (governed), not casual drop-in download. See the eu-legal-mcp line notes.
|
|
72
|
+
|
|
73
|
+
## Licence
|
|
74
|
+
|
|
75
|
+
Apache-2.0. Legifrance content is © the French Republic / DILA and subject to the Legifrance /
|
|
76
|
+
PISTE terms of use; this software only retrieves and cites it.
|