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

NameTypeRequiredDescription
querystringnoOptional condition, intervention, or keyword.
sponsorstringno
event_typestringno
from_datestringyesYYYY-MM-DD, inclusive.
to_datestringyesYYYY-MM-DD, inclusive.
statusstringno
phasestringno
limitnumberno

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.

Regenerated from source · build August 1, 2026