ctis_recent_authorisations
Pack: eu-ctis · Endpoint: https://gateway.pipeworx.io/eu-ctis/mcp
Clinical trials most recently authorised in the EU/EEA, newest decision first, from the EU Clinical Trials Information System. Optionally narrowed to a member state, a medical condition, a sponsor or a phase. Answers “what did the EU authorise this month” and shows what sponsors are starting in Europe now.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | no | Only decisions on or after this date, YYYY-MM-DD |
country | array | no | Member states concerned |
items | string | no | |
condition | string | no | Medical condition, e.g. “breast cancer” |
sponsor | string | no | Sponsor organisation name |
phase | array | no | Trial phase, e.g. [“3”] |
items | string | no | |
limit | number | no | Trials to return, 1-100 (default 25) |
Example call
Arguments
{
"condition": "breast cancer",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/eu-ctis/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ctis_recent_authorisations","arguments":{"condition":"breast cancer","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ctis_recent_authorisations', {
"condition": "breast cancer",
"limit": 3
});
More examples
{
"country": [
"Spain"
],
"since": "2026-08-01",
"limit": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"eu-ctis": {
"url": "https://gateway.pipeworx.io/eu-ctis/mcp"
}
}
}
See Getting Started for client-specific install steps.