Look Up Drug Interactions
Check for potential interactions between medications before prescribing or taking them together.
Drug info: recalls & side effects
FDA drug labeling data: indications, dosage, warnings, contraindications, and interactions. Check adverse event reports for real-world side effects, query recall history, and search drugs by medical condition. Always surface the FDA disclaimer.
Look up detailed drug information by brand or generic name. Returns prescribing details including indications, warnings, dosage, contraindications, adverse reactions, and drug interactions from FDA labeling data.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "drug-info",
"skill": "lookup_drug",
"input": {
"name": "aspirin",
"type": "generic"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch FDA adverse event reports (FAERS) for a drug. Shows reported side effects, hospitalizations, and outcomes. Note: this shows reported events, not confirmed drug interactions. For drug-drug interaction warnings, use lookup_drug and check the drug_interactions field.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "drug-info",
"skill": "check_adverse_events",
"input": {
"drug_name": "ibuprofen"
}
}' \
https://api.toolrouter.com/v1/tools/callCheck if a drug has been recalled by searching the FDA enforcement database. Returns recall events with reason, severity classification (Class I/II/III), status, distribution pattern, and dates.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "drug-info",
"skill": "check_recalls",
"input": {
"drug_name": "metformin"
}
}' \
https://api.toolrouter.com/v1/tools/callFind drugs commonly used for a medical condition by searching FDA drug labeling indications. Returns matching drugs with their brand and generic names, manufacturer, route, and a snippet of their indicated uses.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "drug-info",
"skill": "search_by_condition",
"input": {
"condition": "headache"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"drug-info","skill":"lookup_drug","input":{}}' \
https://api.toolrouter.com/v1/tools/callCheck for potential interactions between medications before prescribing or taking them together.
Query FDA adverse event reports to understand the real-world side effect profile of any medication.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Yes. `search_by_condition` is the best starting point when you only know the symptom or medical condition and want to see which drugs are commonly used for it.
The FDA label shows approved indications, dosage, warnings, contraindications, and interactions. The adverse event report tool shows reported side effects, which are not the same as confirmed causality.
Yes. `check_recalls` surfaces FDA recall history, including the recall class, status, and reason, so you can quickly check whether a product has a known enforcement issue.
No. It is a reference tool for FDA drug information, recalls, and adverse event reports. It is useful for research, but it does not replace a clinician.