Uk Caselaw

live Legal

UK case law — Find Case Law, The National Archives.

3 tools
0ms auth
free tier 50 calls/day

Tools

search_uk_caselaw

Search UK court judgments and tribunal decisions by subject, party name or judge — the Supreme Court, Court of Appeal, High Court, Court of Protection, Family Court and the UK tribunals, from The Nati

No parameters required.

Try it
get_uk_judgment

Fetch the FULL TEXT of a UK judgment from its neutral citation ("[2023] UKSC 42", "[2026] EWHC 1996 (Comm)") or its Find Case Law identifier. Returns the judgment text along with the case name, court,

No parameters required.

Try it
list_uk_courts

List the UK courts and tribunals covered by Find Case Law with the court code each one uses. Call this before narrowing search_uk_caselaw by court — a code like "ewhc/comm" cannot be guessed from "Com

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/uk-caselaw/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/uk-caselaw/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_uk_caselaw","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_uk_caselaw", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("uk case law — find case law, the national archives");