Clinical Trials
Clinical trials & drug safety data
Search ClinicalTrials.gov for active, recruiting, and completed trials by condition, drug, or keyword. Get detailed protocols with eligibility and site locations. Also search the Health Canada Drug Product Database for approved drugs.
Search ClinicalTrials.gov for clinical trials by condition, drug, intervention, or keyword. Filter by recruitment status and trial phase. Returns trial summaries with NCT IDs for detailed lookup.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "clinical-trials",
"skill": "search_trials",
"input": {
"condition": "breast cancer",
"status": "RECRUITING"
}
}' \
https://api.toolrouter.com/v1/tools/callGet comprehensive details for a specific clinical trial by its NCT ID from ClinicalTrials.gov. Returns the full protocol including study summary, eligibility criteria, age/sex requirements, and trial site locations.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "clinical-trials",
"skill": "trial_details",
"input": {
"nct_id": "NCT04564846"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch the Health Canada Drug Product Database for approved drug products. Returns brand name, manufacturer, active ingredients, approval status, and route of administration. Search by drug name or Drug Identification Number (DIN).
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "clinical-trials",
"skill": "drug_products",
"input": {
"query": "acetaminophen"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"clinical-trials","skill":"search_trials","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
How do I find recruiting trials for a condition or drug?
`search_trials` accepts a condition, intervention, or keyword, plus status and phase filters. It returns trial summaries with NCT IDs for detailed lookup.
What do I get when I open a trial by NCT ID?
`trial_details` returns the full protocol: study summary, eligibility criteria, age and sex requirements, and trial site locations.
Can I search approved drug listings too?
`drug_products` searches Health Canada's Drug Product Database for brand name, manufacturer, active ingredients, approval status, route of administration, and DIN.
Is this enough to decide whether someone should enroll?
It gives you the trial record and eligibility details, but it is reference data only. Use it to compare options, then confirm fit with the study team or a clinician.