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

NameTypeRequiredDescription
fromstringnoEarliest authorisation date. YYYY-MM-DD, YYYY-MM or YYYY.
tostringnoLatest authorisation date. YYYY-MM-DD, YYYY-MM or YYYY.
monthstringnoConvenience for a single month, YYYY-MM (e.g. 2026-07). Overrides from/to.
categorystringnohuman | veterinary. Omit for both.
limitnumbernoMax 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.

Regenerated from source · build August 23, 2026