NICE Guidance

live Health

NICE guidance for England — technology appraisals that decide NHS funding, clinical guidelines and quality standards, with the recommendation text and whether it has been withdrawn or replaced.

5 tools
0ms auth
free tier 50 calls/day

Tools

nice_search_guidance

Search NICE guidance for England by drug, device, procedure or condition — technology appraisals, NICE and clinical guidelines, diagnostics guidance, interventional procedures and quality standards. R

No parameters required.

Try it
nice_guidance

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

No parameters required.

Try it
nice_recommendations

The recommendations chapter of a piece of NICE guidance, in full text — the numbered paragraphs stating what NICE recommends and under what conditions, including whether a medicine is recommended only

No parameters required.

Try it
nice_guidance_by_topic

Every piece of NICE guidance filed under a condition area — e.g. all breast cancer guidance, or all guidance on type 2 diabetes — with reference numbers, titles, programme and dates. This is the compl

No parameters required.

Try it
nice_recent_guidance

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 treat

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/nice-guidance/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/nice-guidance/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"nice_search_guidance","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("nice_search_guidance", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("nice guidance for england — technology appraisals that decide nhs funding, clinical guidelines and quality standards, with the recommendation text and whether it has been withdrawn or replaced");