ema_medicine
Pack: ema-medicines · Endpoint: https://gateway.pipeworx.io/ema-medicines/mcp
Full European Medicines Agency record for one medicine, looked up by brand name or EMA product number (EMEA/H/C/…). Returns every published field: status, authorised indication, active substance, ATC code, holder, orphan / conditional / accelerated / PRIME flags, and the full date history from evaluation start through authorisation, suspension or withdrawal. Answers “what is the EU authorised indication for X”, “when was X approved in Europe”, “who holds the EU marketing authorisation for X”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Brand name, INN, or EMA product number. |
Example call
Arguments
{
"name": "Jascayd"
}
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_medicine","arguments":{"name":"Jascayd"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ema_medicine', {
"name": "Jascayd"
});
More examples
{
"name": "EMEA/H/C/006494"
}
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.