get_ni_decision
Pack: ni-caselaw · Endpoint: https://gateway.pipeworx.io/ni-caselaw/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_ni_decision for the schema, then POST the same URL with its arguments for the data.
Get one Northern Ireland judicial decision by its judiciaryni.uk slug (e.g. “2026-nica-36”, from search_ni_decisions or a judiciaryni.uk URL). Returns title, neutral citation, court, delivered date, judge, and pdf_url — the decision’s full text is published as a PDF only, so text is always null and text_extracted is always false; use pdf_url to read the judgment.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | The decision’s judiciaryni.uk slug, e.g. “2026-nica-36” or “nivt-325”. |
Example call
Arguments
{
"slug": "2026-nica-36"
}
curl
curl -X POST https://gateway.pipeworx.io/ni-caselaw/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_ni_decision","arguments":{"slug":"2026-nica-36"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_ni_decision', {
"slug": "2026-nica-36"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ni-caselaw": {
"url": "https://gateway.pipeworx.io/ni-caselaw/mcp"
}
}
}
See Getting Started for client-specific install steps.