nice_recent_guidance
Pack: nice-guidance · Endpoint: https://gateway.pipeworx.io/nice-guidance/mcp
NICE guidance published or updated most recently, newest first, optionally restricted to one programme such as technology appraisals. Answers “what has NICE published this month” and shows which treatments have just been appraised for NHS use in England.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
guidance_type | string | no | Restrict to one NICE programme, e.g. “Technology appraisal guidance” |
limit | number | no | Items to return, 1-50 (default 20) |
Example call
Arguments
{
"guidance_type": "Technology appraisal guidance",
"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_recent_guidance","arguments":{"guidance_type":"Technology appraisal guidance","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nice_recent_guidance', {
"guidance_type": "Technology appraisal guidance",
"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.