mhra_alert_detail
Pack: mhra-alerts · Endpoint: https://gateway.pipeworx.io/mhra-alerts/mcp
Full text of one MHRA safety alert or recall from GOV.UK, given the alert URL or path returned by mhra_safety_alerts. Returns the complete notice as plain text — for a medicines recall that means the affected batch numbers and expiry dates, the marketing authorisation (PL) number, the active ingredient, the recall class and the action the recipient must take — plus the issue date, alert category and any withdrawal notice.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The alert URL or GOV.UK path, e.g. “/drug-device-alerts/class-2-medicines-recall-zentiva-pharma-uk-limited-fingolimod-zentiva-0-dot-5-mg-capsules-el-26-a-slash-37” or the full https://www.gov.uk/… form. |
Example call
Arguments
{
"url": "/drug-device-alerts/class-2-medicines-recall-zentiva-pharma-uk-limited-fingolimod-zentiva-0-dot-5-mg-capsules-el-26-a-slash-37"
}
curl
curl -X POST https://gateway.pipeworx.io/mhra-alerts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mhra_alert_detail","arguments":{"url":"/drug-device-alerts/class-2-medicines-recall-zentiva-pharma-uk-limited-fingolimod-zentiva-0-dot-5-mg-capsules-el-26-a-slash-37"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mhra_alert_detail', {
"url": "/drug-device-alerts/class-2-medicines-recall-zentiva-pharma-uk-limited-fingolimod-zentiva-0-dot-5-mg-capsules-el-26-a-slash-37"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mhra-alerts": {
"url": "https://gateway.pipeworx.io/mhra-alerts/mcp"
}
}
}
See Getting Started for client-specific install steps.