Skip to main content
ClaudeWave

MCP server for UK law - legislation.gov.uk (Acts and SIs across all four nations), Find Case Law judgments, and the GOV.UK Search API (tribunals, HMRC manuals, CMA). Keyless, OGL v3.0. Apache-2.0.

MCP ServersOfficial Registry0 stars0 forksPythonApache-2.0Updated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/25/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · -e
Claude Code CLI
claude mcp add gb-eli-mcp -- python -m -e
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "gb-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

# gb-eli-mcp

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

An MCP server for **legislation.gov.uk**, The National Archives' official portal for
United Kingdom legislation. It searches and retrieves Acts of Parliament, UK Statutory
Instruments, and the equivalent instruments of the Scottish Parliament, Senedd
Cymru/Welsh Parliament and Northern Ireland Assembly, with persistent identifiers and
verifiable citations.

Part of the MateMatic `eu-legal-mcp` production line: the UK counterpart of the Polish
`sejm-eli-mcp` and the German `de-eli-mcp`, built on the same architecture and citation
contract against the UK's own source.

> **No native ELI.** legislation.gov.uk does not publish a native `/eli/` namespace
> (confirmed live: `GET /eli/ukpga/2018/12` returns 404), even though its own
> persistent-identifier scheme predates and is closely related to ELI - the UK is widely
> credited with pioneering the URI-based legislation-identifier concept that ELI later
> formalised EU-wide. `eli_uri` therefore carries the UK's own stable id URI
> (`https://www.legislation.gov.uk/id/{type}/{year}/{number}`) instead of a fabricated
> ELI path - the same disclosure pattern used by this factory's `nl-eli-mcp` and
> `se-eli-mcp`. See `CONSTITUTION.md` Art. 4.
>
> **Licence.** Content is published under the **Open Government Licence v3.0**
> (confirmed live from the site's own `/help` page), which permits copying, publishing
> and adapting with attribution. This connector only relays that public content, with a
> `source_url` on every response.

## The eight tools

| Tool | What it does |
|---|---|
| `gb_search` | Search legislation by text, doc type and year (`/all/data.feed` or `/{doc_type}/data.feed`). |
| `gb_get_act` | Fetch act/instrument metadata by reference (e.g. `ukpga/2018/12`). |
| `gb_get_text` | Fetch the full text (`xml`, `html`, `akn`/Akoma Ntoso, `rdf`, `pdf`, `csv`). |
| `gb_recent_legislation` | Legislation published since a date, newest-first, optionally by doc type. |
| `gb_search_case_law` | Search UK judgments via The National Archives' Find Case Law Atom feed, by text, court, and date range. |
| `gb_get_case` | Fetch a judgment by neutral citation, Find Case Law URI/path, or opaque id - returns Akoma Ntoso XML, or a PDF link fallback. |
| `gb_search_govuk` | Search GOV.UK documents via the keyless Search API - employment/tax/property tribunal decisions, HMRC internal manuals, CMA cases - with server-side date filters and real totals. |
| `gb_get_govuk_content` | Fetch one GOV.UK document via the Content API - tribunal decisions return the judgment PDF link, HMRC manual sections return the full text. |
| `gb_coverage` | Declare what this connector covers, when each family was captured, and - explicitly - what it does NOT cover. Every gap carries a fallback. |

### GOV.UK coverage (added v0.3.0, feature-003)

One upstream, many institutions: `gb_search_govuk` filters by `document_type`.
Live-verified totals (2026-07-07, from the Search API's own `total`/facet fields -
probe: `https://www.gov.uk/api/search.json?count=0&facet_content_store_document_type=1000`):

| `document_type` | Documents |
|---|---|
| `employment_tribunal_decision` | 132,162 |
| `hmrc_manual_section` | 85,315 |
| `residential_property_tribunal_decision` | 17,088 |
| `employment_appeal_tribunal_decision` | 2,571 |
| `cma_case` | 2,565 |
| `utaac_decision` (Upper Tribunal, AAC) | 2,031 |
| `tax_tribunal_decision` | 1,414 |
| `asylum_support_decision` | 101 |

See `SOURCES.md` for the full per-source ledger, including what was scouted and
deliberately rejected (ICO, FCA, IAC) and why.

Every response carries the contract: `eli_uri`
(e.g. `https://www.legislation.gov.uk/id/ukpga/2018/12`), `human_readable_citation`
(e.g. `Data Protection Act 2018 c. 12`), and `source_url`. Case-law responses carry the
same-spirit contract (`human_readable_citation`, `source_url`, `dataset_note`) - see
`CONSTITUTION.md` Art. 5.

## Install

```bash
cd gb-eli-mcp
pip install -e .
```

## Configure (Claude Code / any MCP client)

Copy `.mcp.json.example` and adjust if needed:

```json
{
  "mcpServers": {
    "gb-eli-mcp": { "command": "gb-eli-mcp" }
  }
}
```

### Windows 11 with Smart App Control

Smart App Control blocks unsigned executables, which covers `uvx.exe`, `pip.exe`
and the `gb-eli-mcp.exe` launcher that pip writes at install time. The `python.exe` and
`py.exe` from the python.org installer are signed by the Python Software
Foundation, so running the module through the interpreter works:

```bash
python -m pip install gb-eli-mcp
python -m gb_eli_mcp
```

`pip.exe` is blocked for the same reason, so install with `python -m pip`, not
`pip install`. If `python` is not on PATH, use the Windows launcher: `py -3 -m gb_eli_mcp`.

```json
{ "mcpServers": { "gb-eli-mcp": { "command": "python", "args": ["-m", "gb_eli_mcp"] } } }
```

Do not turn Smart App Control off to work around this - it cannot be re-enabled
without reinstalling Windows.

Environment:

- `GB_ELI_BASE_URL` - default `https://www.legislation.gov.uk`
- `GB_ELI_CASELAW_BASE_URL` - default `https://caselaw.nationalarchives.gov.uk`
- `GB_ELI_GOVUK_BASE_URL` - default `https://www.gov.uk`
- `GB_ELI_CACHE_DIR` - default `~/.matematic/cache/gb-eli`
- `GB_ELI_AUDIT_DIR` - default `~/.matematic/audit`

No API key. legislation.gov.uk is keyless.

## Governance

- **Public data only** - read-only against legislation.gov.uk; no client data leaves the
  machine beyond search parameters.
- **Audit log** - every tool call appends one JSON line to
  `~/.matematic/audit/gb-eli-mcp.jsonl`.
- **Vendor-neutral** - the server talks only to legislation.gov.uk and the local
  filesystem; no LLM provider, no telemetry.
- **Verifiable citations** - every response is independently checkable via `source_url`.

See `CONSTITUTION.md` (the binding rules) and `DISCOVERY.md` (the live API probe).

## Tests

```bash
pip install -e ".[dev]"
pytest tests/test_instructions_drift.py -v   # offline
pytest tests/test_citations_case_law.py -v   # offline
pytest tests/test_citations_govuk.py -v      # offline
pytest tests/test_smoke.py -v                # hits live legislation.gov.uk
pytest tests/test_smoke_case_law.py -v       # hits live caselaw.nationalarchives.gov.uk
pytest tests/test_smoke_govuk.py -v          # hits live www.gov.uk
```

## Licence

Apache-2.0. (c) Matematic Solutions / Wieslaw Mazur.

Note: the *code* in this repository is Apache-2.0. The *legislation content* fetched at
runtime from legislation.gov.uk remains Crown copyright, published under the Open
Government Licence v3.0 - not relicensed by this project.
lawlegaltechmcpmcp-servermodel-context-protocolunited-kingdom

What people ask about gb-eli-mcp

What is matematicsolutions/gb-eli-mcp?

+

matematicsolutions/gb-eli-mcp is mcp servers for the Claude AI ecosystem. MCP server for UK law - legislation.gov.uk (Acts and SIs across all four nations), Find Case Law judgments, and the GOV.UK Search API (tribunals, HMRC manuals, CMA). Keyless, OGL v3.0. Apache-2.0. It has 0 GitHub stars and its last recorded update is dated 2026-08-24.

How do I install gb-eli-mcp?

+

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

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

+

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

Who maintains matematicsolutions/gb-eli-mcp?

+

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

Are there alternatives to gb-eli-mcp?

+

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

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

More MCP Servers

gb-eli-mcp alternatives