ct_get_study
Pack: clinicaltrials · Endpoint: https://gateway.pipeworx.io/clinicaltrials/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ct_get_study for the schema, then POST the same URL with its arguments for the data.
Get full trial details by NCT ID (e.g., ‘NCT04567890’). Returns protocol, eligibility criteria, primary outcomes, sponsor, locations, and results.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
nct_id | string | yes | ClinicalTrials.gov NCT identifier (e.g., “NCT05462717”) |
Example call
Arguments
{
"nct_id": "NCT05462717"
}
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_get_study","arguments":{"nct_id":"NCT05462717"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ct_get_study', {
"nct_id": "NCT05462717"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Raw ClinicalTrials.gov API response for a single study"
}
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.