ema_recent_approvals
Pack: ema-medicines · Endpoint: https://gateway.pipeworx.io/ema-medicines/mcp
New medicines authorised for the European Union market by the European Medicines Agency, in a date window. Returns brand name, active substance / INN, therapeutic area and indication, marketing-authorisation holder, authorisation date and EPAR link. Answers “which drugs did the EMA approve in July 2026”, “recent EU drug approvals”, “new EU marketing authorisations this year”. Filtered on the marketing-authorisation date, which is the date an initial authorisation was granted.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
from | string | no | Earliest authorisation date. YYYY-MM-DD, YYYY-MM or YYYY. |
to | string | no | Latest authorisation date. YYYY-MM-DD, YYYY-MM or YYYY. |
month | string | no | Convenience for a single month, YYYY-MM (e.g. 2026-07). Overrides from/to. |
category | string | no | human | veterinary. Omit for both. |
limit | number | no | Max records, default 50, max 200. |
Example call
Arguments
{
"month": "2026-07"
}
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_approvals","arguments":{"month":"2026-07"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ema_recent_approvals', {
"month": "2026-07"
});
More examples
{
"from": "2026-01",
"to": "2026-06",
"category": "human",
"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.