Uk Tribunals

liveGovernment

UK first-tier tribunal decisions — GOV.UK search + content API.

3tools
0msauth
free tier50 calls/day

Tools

search_tribunal_decisions

Search UK first-tier and Upper Tribunal decisions published on GOV.UK — Employment Tribunal (first-tier, NOT the appeal tribunal), Employment Appeal Tribunal, Residential Property Tribunal, Upper Trib

No parameters required.

Try it
get_tribunal_decision

Fetch one tribunal decision by the `link` returned from search_tribunal_decisions (a GOV.UK path like "/employment-tribunal-decisions/..."). Returns the full extracted decision text where GOV.UK publi

No parameters required.

Try it
list_tribunal_categories

List the decision category slugs GOV.UK actually uses for one tribunal, read live from that tribunal’s own finder page (not a hardcoded list, since GOV.UK adds and renames these over time). Pass the v

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-tribunals/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-tribunals/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_tribunal_decisions","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_tribunal_decisions", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("uk first-tier tribunal decisions — gov");