get_law_commission_publication
Pack: law-commission · Endpoint: https://gateway.pipeworx.io/law-commission/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_law_commission_publication for the schema, then POST the same URL with its arguments for the data.
Fetch one Law Commission of England & Wales publication (a consultation paper, report, summary or terms-of-reference) by its id (from search_law_commission_publications) or its lawcom.gov.uk link. Returns the law-reform project it belongs to and links to any attached PDF documents — the actual report text is the PDF; the WordPress record itself typically carries only a project link, not report prose.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | no | Publication id, from search_law_commission_publications. |
link | string | no | A lawcom.gov.uk/publication/… link, as an alternative to id. |
Example call
Arguments
{
"id": 4941
}
curl
curl -X POST https://gateway.pipeworx.io/law-commission/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_law_commission_publication","arguments":{"id":4941}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_law_commission_publication', {
"id": 4941
});
More examples
{
"link": "https://lawcom.gov.uk/publication/commercial-leasehold-overcoming-barriers-to-transactions-consultation-paper/"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"law-commission": {
"url": "https://gateway.pipeworx.io/law-commission/mcp"
}
}
}
See Getting Started for client-specific install steps.