Mhra Uk
live GovernmentLegalHealthMHRA (UK Medicines and Healthcare products Regulatory Agency) — the public
Tools
mhra_search Search the UK MHRA products register by product name, brand name or active substance — e.g. "ibuprofen", "Nurofen", "atorvastatin". Post-Brexit the EMA register does not cover the UK, so this is the U
No parameters required.
Try it
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.
curl -X POST https://gateway.pipeworx.io/mhra-uk/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' 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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("mhra_search", {}); // Or ask in plain English:
const answer = await px.ask("mhra (uk medicines and healthcare products regulatory agency) — the public");