Clinical Trials Data
search_trials_by_nct_ids
Retrieve specific clinical trials by NCT ID(s). This tool allows you to retrieve the details of specific clinical trials by providing their NCT IDs. Input: - `nct_ids`: A list of strings, where each string is an NCT ID to retrieve. Example: `['NCT04280705', 'NCT04280718']` - `fields`: A list of specific fields to return in the results. If not provided, returns SEARCH_TOOL_DEFAULTS (9 essential fields: NCTId, BriefTitle, Acronym, Condition, Phase, InterventionName, LeadSponsorName, OverallStatus, HasResults).
Remote plainyogurt21/clintrials-mcp
Other tools also called search_trials_by_nct_ids?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"fields": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Specific fields to return"
},
"nct_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "NCT IDs to retrieve"
}
}
}