list_uk_courts
Pack: uk-caselaw · Endpoint: https://gateway.pipeworx.io/uk-caselaw/mcp
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 “Commercial Court”, and an unrecognised code returns no judgments rather than an error.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/uk-caselaw/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_uk_courts","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_uk_courts', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"uk-caselaw": {
"url": "https://gateway.pipeworx.io/uk-caselaw/mcp"
}
}
}
See Getting Started for client-specific install steps.