Uk Tribunals
liveGovernmentUK first-tier tribunal decisions — GOV.UK search + content API.
Tools
search_tribunal_decisionsSearch 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_decisionFetch 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_categoriesList 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.
curl -X POST https://gateway.pipeworx.io/uk-tribunals/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_tribunal_decisions", {});// Or ask in plain English:
const answer = await px.ask("uk first-tier tribunal decisions — gov");