trial_getter
Retrieve complete clinical trial details by NCT ID, including protocol, locations, outcomes, and references. Part of BioMCP for structured access to biomedical data.
Instructions
Fetch comprehensive details for a specific clinical trial.
Retrieves all available information for a clinical trial by its NCT ID.
This includes protocol details, locations, outcomes, and references.
For specific sections only, use the specialized getter tools:
- trial_protocol_getter: Core protocol information
- trial_locations_getter: Site locations and contacts
- trial_outcomes_getter: Primary/secondary outcomes and results
- trial_references_getter: Publications and references
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nct_id | Yes | NCT ID (e.g., 'NCT06524388') |
Input Schema (JSON Schema)
{
"properties": {
"nct_id": {
"description": "NCT ID (e.g., 'NCT06524388')",
"title": "Nct Id",
"type": "string"
}
},
"required": [
"nct_id"
],
"title": "trial_getterArguments",
"type": "object"
}