ema_chmp_opinions
Pack: ema-medicines · Endpoint: https://gateway.pipeworx.io/ema-medicines/mcp
Medicines the EMA committees (CHMP for human medicines, CVMP for veterinary) have recommended for or against EU approval, still awaiting the European Commission decision. Returns brand name, active substance, applicant, opinion status and the date the opinion was adopted. Answers “which new medicines did the CHMP recommend for approval”, “what is in the EMA pipeline awaiting a Commission decision”, “recent negative CHMP opinions”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
opinion_status | string | no | positive | negative | any. Default positive. |
since | string | no | Earliest opinion-adopted date. YYYY-MM-DD, YYYY-MM or YYYY. |
category | string | no | human | veterinary. Omit for both. |
include_decided | boolean | no | Also return opinions on medicines the European Commission has already decided. Default false, which returns only opinions still awaiting a decision. |
limit | number | no | Max records, default 50, max 200. |
Example call
Arguments
{
"opinion_status": "positive"
}
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_chmp_opinions","arguments":{"opinion_status":"positive"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ema_chmp_opinions', {
"opinion_status": "positive"
});
More examples
{
"opinion_status": "negative",
"include_decided": true,
"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.