ema_recent_updates
Pack: ema-medicines · Endpoint: https://gateway.pipeworx.io/ema-medicines/mcp
Medicines whose European Medicines Agency register entry changed most recently — new authorisations, status changes to withdrawn or suspended, refreshed product information. Returns the medicine, what its status is now, and when the entry was last updated. Answers “what changed at the EMA this week”, “which EU medicines were recently withdrawn or suspended”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | no | Earliest last-updated date. YYYY-MM-DD, YYYY-MM or YYYY. |
status | string | no | Filter on medicine status, e.g. Withdrawn, Suspended, Authorised. |
category | string | no | human | veterinary. Omit for both. |
limit | number | no | Max records, default 25, max 200. |
Example call
Arguments
{
"since": "2026-08-01",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/ema-medicines/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ema_recent_updates","arguments":{"since":"2026-08-01","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ema_recent_updates', {
"since": "2026-08-01",
"limit": 5
});
More examples
{
"status": "Withdrawn",
"limit": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ema-medicines": {
"url": "https://gateway.pipeworx.io/ema-medicines/mcp"
}
}
}
See Getting Started for client-specific install steps.