nice_search_guidance
Pack: nice-guidance · Endpoint: https://gateway.pipeworx.io/nice-guidance/mcp
Search NICE guidance for England by drug, device, procedure or condition — technology appraisals, NICE and clinical guidelines, diagnostics guidance, interventional procedures and quality standards. Returns the reference number (TA1040, NG101), title, guidance type, publication date and summary. Answers whether NICE has assessed a treatment and which document says so, which is the first step to whether the NHS in England funds it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Drug, device, procedure or condition, e.g. “olaparib” or “atrial fibrillation” |
guidance_type | string | no | Restrict to one NICE programme, spelled as NICE spells it: ${GUIDANCE_TYPES.join(’, ’)} |
sort | string | no | ”date” for newest first, or “relevance” (default) |
page | number | no | Result page, 1-based |
limit | number | no | Results to return, 1-50 (default 15) |
Example call
Arguments
{
"query": "olaparib",
"limit": 3
}
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_search_guidance","arguments":{"query":"olaparib","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nice_search_guidance', {
"query": "olaparib",
"limit": 3
});
More examples
{
"query": "semaglutide",
"guidance_type": "Technology appraisal guidance",
"sort": "date",
"limit": 3
}
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.