mhra_search
Pack: mhra-uk · Endpoint: https://gateway.pipeworx.io/mhra-uk/mcp
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 UK authorisation surface. Returns one row per DOCUMENT (a product usually has an SmPC, a patient leaflet and sometimes an assessment report), each with its PL number, the MHRA territory it covers, the document date and a direct link to the authoritative PDF. Use mhra_product to gather every document for one PL number.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Product name, brand, or active substance. e.g. “atorvastatin”, “Nurofen”. |
doc_type | string | no | Restrict to one document type: “Spc” (prescribing info), “Pil” (patient leaflet) or “Par” (assessment report). |
territory | string | no | Restrict to “UK” (whole), “GB” (Great Britain only) or “NI” (Northern Ireland only). |
limit | number | no | Rows to return, 1-50 (default 10). |
offset | number | no | Rows to skip, for paging (default 0). |
Example call
Arguments
{
"query": "atorvastatin"
}
curl
curl -X POST https://gateway.pipeworx.io/mhra-uk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mhra_search","arguments":{"query":"atorvastatin"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mhra_search', {
"query": "atorvastatin"
});
More examples
{
"query": "ibuprofen",
"doc_type": "Spc",
"territory": "UK",
"limit": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mhra-uk": {
"url": "https://gateway.pipeworx.io/mhra-uk/mcp"
}
}
}
See Getting Started for client-specific install steps.