@pipeworx/ni-caselaw

MCP serverEverything else

Northern Ireland court and tribunal judicial decisions, judiciaryni.uk.

Available today. Use it from your connected AI after setup.

Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.

Then ask your AI: use @pipeworx/ni-caselaw

Install @pipeworx/ni-caselaw

The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.

  • Claude Code

    claude mcp add --transport http --scope user pipeworx-ni-caselaw 'https://gateway.pipeworx.io/ni-caselaw/mcp'

    Run it once in your project, then open /mcp to approve any sign-in the server asks for.

  • Claude Desktop

    https://gateway.pipeworx.io/ni-caselaw/mcp

    Add a custom connector in Settings, paste this address, and approve the sign-in.

  • Cursor

    cursor://anysphere.cursor-deeplink/mcp/install?name=pipeworx-ni-caselaw&config=eyJ1cmwiOiJodHRwczovL2dhdGV3YXkucGlwZXdvcnguaW8vbmktY2FzZWxhdy9tY3AifQ==

    Open the link and Cursor adds the server at that address.

  • ChatGPT

    https://gateway.pipeworx.io/ni-caselaw/mcp

    In Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.

  • Codex

    codex mcp add pipeworx-ni-caselaw --url 'https://gateway.pipeworx.io/ni-caselaw/mcp'

    Run it once, then sign in with codex mcp login pipeworx-ni-caselaw if the server asks for an account.

From the project's README

As published by pipeworx-io/mcp-ni-caselaw in README.md.

Northern Ireland court and tribunal judicial decisions, read live from judiciaryni.uk — the Court of Appeal, Crown Court, King's Bench Division, Family Division, Coroner's Court, Master's decisions, the Valuation Tribunal and others.

Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.

Tools

  • search_ni_decisions(query?, court?, year?, limit?) — search decisions by keyword, court code (e.g. "nica") and/or year. Returns title, neutral citation, court, date, judge and a link to the decision's PDF for each match.
  • get_ni_decision(slug) — one decision by its judiciaryni.uk slug (e.g. "2026-nica-36"). Returns full metadata + pdf_url; text is always null and text_extracted is always false — see below.

Auth

Keyless. No operator key needed.

Data sources

  • https://www.judiciaryni.uk/judicial-decisions — a Drupal Views listing. Probed live 2026-09-18. Three real server-side facets exist: /judicial-decisions/date/<year> (also <year>-<month>), /judicial-decisions/type/<slug-id> and /judicial-decisions/judiciary/<id>, plus a keyword box (?query_decisions=<text>). There is no court facet. The court a decision belongs to is only ever visible inside its neutral citation and, for most modern decisions, inside its own URL slug (/judicial-decisions/2026-nica-36). search_ni_decisions's court filter is therefore applied CLIENT-SIDE while paging the listing, not passed to the upstream as a query param — combine it with year to narrow a rare court quickly, since the per-call page budget is bounded (20 pages) and a rare court with no year given may need more pages than that to surface enough matches (the response's truncated/pages_scanned fields say so rather than reading as "no more decisions exist").

    query_decisions is a genuine full-text search across the WHOLE corpus, not a court filter — searching "NICA" returns 2,822 hits, because that literal string also appears inside other courts' citations of NICA cases. It is offered here only for keyword search, same as the site's own search box.

    rss.xml on this site returns 0 items — checked live, not assumed, and not used.

    User-Agent matters here in an unusual way. A UA string containing the word "Bot" (tested: "...PipeworxBot/1.0...") gets a flat 405 from this site's edge (Varnish), while a plain identifying UA (pipeworx-mcp-ni-caselaw/1.0 (+https://pipeworx.io), matching the monorepo's usual pattern) gets a normal 200. Not a robots.txt matter — this is public data with no restriction, and the ruling on robots is settled — just a WAF quirk worth knowing before assuming the site is blocking bots.

  • TEXT IS PDF-ONLY. Every decision's full text is a PDF under /files/judiciaryni/<yyyy-mm>/<name>.pdf; the site's HTML never carries extracted text. This pack does not parse PDFs — no PDF-text-extraction helper exists anywhere in this monorepo (checked mcps/*, shared/src), and every other pack here that hits a PDF-only judicial source (gao-protests, recap) ships the same way: metadata + a direct link, text_extracted left false rather than guessed or silently empty. get_ni_decision always returns text: null, text_extracted: false and says so in its own description and in a note field — per the silent-zero policy, a caller has to be TOLD the text isn't there, never left to notice an empty field on its own.

  • Court codes are not a controlled vocabulary on the site — they are whatever the neutral citation says. The common ones observed live: nica (Court of Appeal), nicc (Crown Court), nikb (King's Bench Division, called niqb before the 2022 accession — older decisions may use either), nifam (Family Division), nicoroner (Coroner's Court), nimaster (Master's decisions), nivt (Valuation Tribunal, whose slugs don't carry a year prefix, e.g. nivt-325). Older Social Security/Child Support Commissioner decisions (e.g. "C12/25-26(PIP)") don't reduce to a clean court code at all — deriveCourt returns null for those rather than guessing, and a court filter simply won't match them (correct behaviour, not a bug).

Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "ni-caselaw": {
      "url": "https://gateway.pipeworx.io/ni-caselaw/mcp"
    }
  }
}

What this endpoint actually serves

tools/list at https://gateway.pipeworx.io/ni-caselaw/mcp returns the tools in the table above plus the shared Pipeworx meta-tools — ask_pipeworx, discover_tools, search_within, remember/recall and the rest of the gateway-wide set. So the tool count you see is larger than this table: a single-pack endpoint currently lists roughly 30 shared tools alongside the pack's own. The connection's initialize response states its exact scope, and is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a scoped connection answer a question this pack does not cover — via ask_pipeworx, which routes across the whole catalog — without you adding a second MCP server. There is currently no way to mount a pack endpoint without them; if the extra schemas cost you more context than the routing is worth, connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}

Both URLs reach the same gateway and the same 1679+ data sources. The only difference is which pack's tools are listed directly; ask_pipeworx reaches all of them from either one.

No MCP client? Call it over HTTP

curl -X POST https://gateway.pipeworx.io/v1/tools/search_ni_decisions \
  -H 'Content-Type: application/json' \
  -d '{"court":"nica","year":2026,"limit":5}'

No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/search_ni_decisions. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.

Standalone (no gateway account)

This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:

{
  "mcpServers": {
    "ni-caselaw": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-ni-caselaw"]
    }
  }
}

Or run it directly to confirm it starts:

npx -y @pipeworx/mcp-ni-caselaw

It speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call for only this pack's tools — none of the shared meta-tools the gateway connection above adds. Same source, same tools, no ask_pipeworx routing.

Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:

ask_pipeworx({ question: "your question about Ni Caselaw data" })

The gateway picks the right tool and fills the arguments automatically.

More

License

MIT

Advanced
Delivery
ni-caselaw MCP server → your ahel connector (mcp.ahel.ai) → your AI.
Catalog kind
mcp-server
Key
io-github-pipeworx-io-ni-caselaw
Source
github.com/pipeworx-io/mcp-ni-caselaw
Hosted endpoint
https://gateway.pipeworx.io/ni-caselaw/mcp