ct_enrollment_watch
Pack: clinicaltrials · Endpoint: https://gateway.pipeworx.io/clinicaltrials/mcp
Route active trials for enrollment follow-up using registry status, enrollment type, dates, last update, and site counts. Flags are mechanical review hints—not predictions of recruitment success, trial failure, or data timing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | |
sponsor | string | no | |
phase | string | no | |
limit | number | no |
Example call
Arguments
{
"sponsor": "Eli Lilly and Company",
"phase": "PHASE3",
"limit": 50
}
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_enrollment_watch","arguments":{"sponsor":"Eli Lilly and Company","phase":"PHASE3","limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ct_enrollment_watch', {
"sponsor": "Eli Lilly and Company",
"phase": "PHASE3",
"limit": 50
});
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.