nice_guidance
Pack: nice-guidance · Endpoint: https://gateway.pipeworx.io/nice-guidance/mcp
The published record for one piece of NICE guidance by reference number (TA1040, NG101, CG81, QS12, IPG123, DG55, HST20): title, programme, publication and last-review dates, overview, the chapters it contains, the condition area it sits under, and — the part that matters clinically — whether it is still current or has been withdrawn, terminated or replaced, naming the guidance that replaced it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | NICE reference number, e.g. “TA1040” |
Example call
Arguments
{
"id": "TA1040"
}
curl
curl -X POST https://gateway.pipeworx.io/nice-guidance/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nice_guidance","arguments":{"id":"TA1040"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nice_guidance', {
"id": "TA1040"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nice-guidance": {
"url": "https://gateway.pipeworx.io/nice-guidance/mcp"
}
}
}
See Getting Started for client-specific install steps.