Mhra Uk

live GovernmentLegalHealth

MHRA (UK Medicines and Healthcare products Regulatory Agency) — the public

4 tools
0ms auth
free tier 50 calls/day

Tools

mhra_product

Every MHRA document held for one UK licence number, grouped by document type — the SmPC that carries the authorised indications, the patient leaflet, and the public assessment report where one exists.

No parameters required.

Try it
mhra_recent_changes

MHRA documents added or revised since a date, newest first — the weekly-refresh feed. Pass an ISO date such as "2026-09-01". Returns the same rows as mhra_search plus the cutoff that was applied, so r

No parameters required.

Try it
mhra_snapshot

How big the UK register currently is and how to walk all of it: total document count, the count per document type, the newest document date, and the paging recipe for a full enumeration. MHRA publishe

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/mhra-uk/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/mhra-uk/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"mhra_search","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("mhra_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("mhra (uk medicines and healthcare products regulatory agency) — the public");