ema_pip
Pack: ema-medicines · Endpoint: https://gateway.pipeworx.io/ema-medicines/mcp
European Medicines Agency Paediatric Investigation Plans (PIPs) — the agreed or waived plan for studying a medicine in children, required for most new EU marketing-authorisation applications. Returns the active substance, invented name (if assigned), therapeutic area, condition/indication under study, decision type (agreement, modification, waiver, compliance check) and decision date. Answers “what paediatric studies has the EMA required for X”, “is there an EU paediatric investigation plan for drug X”, “recent EMA paediatric decision for asthma”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free text: active substance, invented name, or condition/indication text. |
decision_type | string | no | Filter on decision type text, e.g. “waiver”, “agreeing on”, “compliance”. Substring match. |
since | string | no | Earliest decision date. YYYY-MM-DD, YYYY-MM or YYYY. |
limit | number | no | Max records, default 50, max 200. |
Example call
Arguments
{
"query": "satralizumab"
}
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_pip","arguments":{"query":"satralizumab"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ema_pip', {
"query": "satralizumab"
});
More examples
{
"decision_type": "waiver",
"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.