MedBridge
Related Servers
Alternatives to MedBridge
No user-submitted related servers found.
Related Servers
- AlicenseAqualityAmaintenanceA high-performance MCP server that gives LLMs access to 25 biomedical tools federated across 50+ upstream APIs for genes, variants, drugs, diseases, literature, clinical trials, and structural biology.41692 npm12Apache 2.0
- FlicenseNot gradedqualityCmaintenanceAn MCP server that enables LLMs to securely query synthetic clinical data through validated, scoped tools (patient summaries, conditions, medications, lab trends, encounters) while maintaining audit logs and access controls.-
- AlicenseAqualityDmaintenanceAn MCP server that lets an LLM answer a pharmacist's question about drug shortages by normalizing drug names, finding pharmacologic alternatives, and checking their shortage status using public FDA and NLM data.5MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server with 60 tools connecting AI assistants to Czech healthcare databases (SUKL, MKN-10, NRPZS) and global biomedical sources (PubMed, ClinicalTrials.gov, OpenFDA).1MIT
- AlicenseBqualityDmaintenanceThis MCP server provides 16 intelligent tools for searching, retrieving, and linking biomedical literature from PubMed and PMC. It enables LLM applications to perform complex queries, batch processing, and cross-database linking.168MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for clinical and pharmaceutical data, enabling search of ClinicalTrials.gov, PubMed, FDA, and ICH guidelines without API keys.19 npmMIT
TDQS
Scored across 6 tools
Each tool targets a distinct data type and action: trials are split between search (list) and get (detail), while drug tools cleanly separate recalls, adverse-event reports, labels, and name normalization. The descriptions reinforce the boundaries and cross-reference each other, so an agent should rarely misselect.
All tools use an imperative verb + object pattern in snake_case: get_trial, search_trials, search_drug_recalls, get_adverse_events, get_drug_label, normalize_drug_name. The only variation is singular versus plural object forms, which aligns with whether a tool returns one record or many.
Six tools is a focused, appropriate size for a medical-information server that spans clinical trials and FDA drug data. No tool feels redundant, and the set is small enough to avoid agent decision overhead.
The trial workflow is complete: search results point to a full-record getter with eligibility criteria and locations. The drug side covers name resolution, recalls, adverse-event summaries, and labels, with no obvious dead ends for a read-only informational server.