ctis_trial
Pack: eu-ctis · Endpoint: https://gateway.pipeworx.io/eu-ctis/mcp
Full published record for one EU clinical trial by its CTIS number (e.g. 2025-523586-18-00): full scientific title, sponsor and contacts, investigational products with active substances and roles, medical conditions, therapeutic areas, trial objective, eligibility criteria, primary and secondary endpoints, planned enrolment, estimated end date, and the authorisation status, decision date and reported start and recruitment events in each member state. Sourced from the EU Clinical Trials Information System.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ct_number | string | yes | CTIS trial number, e.g. “2025-523586-18-00” |
Example call
Arguments
{
"ct_number": "2025-523586-18-00"
}
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_trial","arguments":{"ct_number":"2025-523586-18-00"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ctis_trial', {
"ct_number": "2025-523586-18-00"
});
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.