list_tribunal_categories
Pack: uk-tribunals · Endpoint: https://gateway.pipeworx.io/uk-tribunals/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/list_tribunal_categories for the schema, then POST the same URL with its arguments for the data.
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 value column to search_tribunal_decisions’ category argument — the label is what a human reads, the slug is what the filter needs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tribunal | string | yes | Which tribunal. One of: ${TRIBUNAL_KEYS.join(’, ’)}. |
Example call
Arguments
{
"tribunal": "employment"
}
curl
curl -X POST https://gateway.pipeworx.io/uk-tribunals/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_tribunal_categories","arguments":{"tribunal":"employment"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_tribunal_categories', {
"tribunal": "employment"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"uk-tribunals": {
"url": "https://gateway.pipeworx.io/uk-tribunals/mcp"
}
}
}
See Getting Started for client-specific install steps.