ct_catalyst_calendar
Pack: clinicaltrials · Endpoint: https://gateway.pipeworx.io/clinicaltrials/mcp
Find trials with sponsor-entered primary-completion or study-completion dates in a specified window. These registry dates may be estimated or revised and are planning signals—not guaranteed data readouts, conference presentations, or regulatory events.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional condition, intervention, or keyword. |
sponsor | string | no | |
event_type | string | no | |
from_date | string | yes | YYYY-MM-DD, inclusive. |
to_date | string | yes | YYYY-MM-DD, inclusive. |
status | string | no | |
phase | string | no | |
limit | number | no |
Example call
Arguments
{
"query": "obesity",
"event_type": "primary_completion",
"from_date": "2026-08-01",
"to_date": "2026-12-31",
"phase": "PHASE3",
"limit": 25
}
curl
curl -X POST https://gateway.pipeworx.io/clinicaltrials/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ct_catalyst_calendar","arguments":{"query":"obesity","event_type":"primary_completion","from_date":"2026-08-01","to_date":"2026-12-31","phase":"PHASE3","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ct_catalyst_calendar', {
"query": "obesity",
"event_type": "primary_completion",
"from_date": "2026-08-01",
"to_date": "2026-12-31",
"phase": "PHASE3",
"limit": 25
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clinicaltrials": {
"url": "https://gateway.pipeworx.io/clinicaltrials/mcp"
}
}
}
See Getting Started for client-specific install steps.