ni-caselaw
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ni-caselawSearch for Court of Appeal decisions from 2026 involving judicial review"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/ni-caselaw
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;textis alwaysnullandtext_extractedis alwaysfalse— see below.
Related MCP server: BAILII MCP Server
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'scourtfilter is therefore applied CLIENT-SIDE while paging the listing, not passed to the upstream as a query param — combine it withyearto 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'struncated/pages_scannedfields say so rather than reading as "no more decisions exist").query_decisionsis 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.xmlon 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 (checkedmcps/*,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_extractedleftfalserather than guessed or silently empty.get_ni_decisionalways returnstext: null, text_extracted: falseand says so in its own description and in anotefield — 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, calledniqbbefore 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 —deriveCourtreturnsnullfor those rather than guessing, and acourtfilter 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-caselawIt 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
This server cannot be deployed
Maintenance
Related MCP Connectors
Search UK court judgments and tribunal decisions from the National Archives
Search UK Acts, Statutory Instruments, and legislation with full text retrieval
Official EUR-Lex, UK, US, and gazette search, metadata fetch, and change-only watches.
Resolve, search and verify legal citations against the official sources, with provenance.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables searching and retrieving UK case law from The National Archives, including full judgments with filtering by court, legal area, and date range.26-
- AlicenseAqualityCmaintenanceEnables searching UK case law on BAILII and retrieving judgments with automatic section extraction (summary, conclusions, etc.). Runs locally to avoid BAILII's cloud IP blocks.313 PyPI5Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables querying and filtering a read-only dataset of AI-related court orders with full-text search, facets, and record retrieval via MCP, OpenAPI, or REST endpoints.MIT
- AlicenseAqualityAmaintenanceEnables searching and retrieval of UK legislation (Acts, Statutory Instruments) from legislation.gov.uk with persistent identifiers and verifiable citations.942 PyPIApache 2.0