list_law_commission_projects
Pack: law-commission · Endpoint: https://gateway.pipeworx.io/law-commission/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/list_law_commission_projects for the schema, then POST the same URL with its arguments for the data.
List law-reform projects run by the Law Commission of England & Wales (lawcom.gov.uk/project) — the workstreams under which its consultation papers and reports are published, e.g. “Commercial leasehold” or “Consumer class actions”. Optionally narrow by status. Welsh-language duplicates are filtered out, one row per project.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | no | Filter by project status: “current”, “completed”, “upcoming”, or “other”. Omit to list all statuses. |
limit | number | no | Projects to return, 1-50 (default 20). |
Example call
Arguments
{
"status": "current",
"limit": 12
}
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":"list_law_commission_projects","arguments":{"status":"current","limit":12}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_law_commission_projects', {
"status": "current",
"limit": 12
});
More examples
{
"limit": 20
}
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.