ct_results_summary
Pack: clinicaltrials · Endpoint: https://gateway.pipeworx.io/clinicaltrials/mcp
Project posted ClinicalTrials.gov results for one NCT ID, including registered endpoints, reported outcome measures, statistical analyses, and adverse-event group counts. Registry results are not an FDA conclusion, peer review, or investment recommendation.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
nct_id | string | yes | |
max_outcomes | number | no | Reported outcomes returned (1-50, default 20). |
Example call
Arguments
{
"nct_id": "NCT05610111",
"max_outcomes": 20
}
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_results_summary","arguments":{"nct_id":"NCT05610111","max_outcomes":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ct_results_summary', {
"nct_id": "NCT05610111",
"max_outcomes": 20
});
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.