clinicaltrials_get_study_results
ActiveTool of clinicaltrialsgov-mcp-server
Fetch clinical trial results data from ClinicalTrials.gov for completed studies — outcome measures with statistics, adverse events, participant flow, baseline characteristics, and results metadata (limitations & caveats, certain-agreement disclosure restrictions, results point of contact). Only available for studies where hasResults is true. Use clinicaltrials_search_studies first to find studies with results.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"nctIds"
],
"properties": {
"nctIds": {
"anyOf": [
{
"type": "string",
"pattern": "^NCT\\d{8}$",
"description": "A single NCT ID."
},
{
"type": "array",
"items": {
"type": "string",
"pattern": "^NCT\\d{8}$"
},
"maxItems": 20,
"minItems": 1,
"description": "Multiple NCT IDs (max 20)."
}
],
"description": "One or more NCT IDs (max 20). E.g., \"NCT12345678\" or [\"NCT12345678\", \"NCT87654321\"]. Use summary=true for large batches to avoid large payloads."
},
"summary": {
"type": "boolean",
"default": false,
"description": "Return condensed summaries instead of full data. Reduces payload from ~200KB to ~5KB per study. Summaries include outcome titles, types, timeframes, group counts, and top-level stats — omitting individual measurements, analyses, and per-group data."
},
"sections": {
"anyOf": [
{
"enum": [
"outcomes",
"adverseEvents",
"participantFlow",
"baseline",
"moreInfo"
],
"type": "string",
"description": "A single section name."
},
{
"type": "array",
"items": {
"enum": [
"outcomes",
"adverseEvents",
"participantFlow",
"baseline",
"moreInfo"
],
"type": "string"
},
"description": "Multiple section names."
}
],
"description": "Filter which sections to return. Values: outcomes, adverseEvents, participantFlow, baseline, moreInfo. Omit for all sections."
}
}
}Parent server
clinicaltrialsgov-mcp-server
https://github.com/cyanheads/clinicaltrialsgov-mcp-server
3/7 registries