Doctor Claude
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| prompts | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_medical_infoA | Search for peer-reviewed medical information from MedlinePlus and StatPearls (NCBI). Returns a list of relevant articles with titles, URLs, and descriptions. IMPORTANT: Use simple, focused queries with 1-3 key medical terms for best results. Avoid overly complex multi-word queries. If searching for specific patterns or presentations, use the core condition/topic (e.g., "child abuse burns" instead of "geometric patterned skin lesions burns infants child abuse"). The tool will automatically try simpler queries if the initial search returns no results. This tool provides EDUCATIONAL information only - not medical advice, diagnoses, or treatment recommendations. |
| fetch_medical_articleA | Fetch and parse the full content of a medical article from MedlinePlus or StatPearls. Only URLs from medlineplus.gov and ncbi.nlm.nih.gov are allowed for security. This tool provides EDUCATIONAL information only - not medical advice, diagnoses, or treatment recommendations. |
| set_patient_profileA | Save patient profile information (age, weight, height, chronic conditions, medications, allergies, etc.). This information is stored locally and will be used to provide more personalized medical information during consultations. All fields are optional - you can provide as much or as little information as you want. |
| get_patient_profileA | Retrieve the saved patient profile information. Returns null if no profile has been saved. |
| delete_patient_profileB | Delete the saved patient profile information. |
| calculate_clinical_scoreA | Calculate clinical decision rule scores to help assess disease severity, risk stratification, and guide clinical decision-making. Supports multiple evidence-based calculators: CURB-65 (pneumonia severity), Centor Score (strep throat probability), Wells DVT (deep vein thrombosis risk), Wells PE (pulmonary embolism risk), HEART Score (chest pain cardiac risk), CHA2DS2-VASc (stroke risk in atrial fibrillation), GCS (Glasgow Coma Scale for consciousness assessment), qSOFA (sepsis screening), Alvarado Score (appendicitis), Glasgow-Blatchford Score (upper GI bleeding risk), NIHSS (NIH Stroke Scale for stroke severity), SOFA (Sequential Organ Failure Assessment), PERC (Pulmonary Embolism Rule-out Criteria), TIMI (Thrombolysis in Myocardial Infarction Risk Score), MELD (Model for End-Stage Liver Disease), GAD-7 (Generalized Anxiety Disorder-7). These tools help determine appropriate level of care (outpatient vs hospital) and testing strategies. This tool provides EDUCATIONAL information only - all clinical decisions must be made by qualified healthcare providers. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| diagnostic_consultation | Engage in an educational medical consultation to help understand symptoms and conditions. Provides information about possible conditions and common clinical approaches, but does not prescribe treatments or provide medical advice. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct operation: searching for articles, fetching article content, managing patient profile (set/get/delete), and calculating clinical scores. No two tools overlap in purpose.
All tool names follow a consistent `verb_noun` pattern with snake_case (e.g., `fetch_medical_article`, `get_patient_profile`), making the action and resource clear.
With 6 tools, the server is well-scoped: 3 for patient profile management, 2 for medical information retrieval, and 1 for clinical scoring. This covers core functionality without unnecessary bloat.
The tool set covers the full lifecycle: search/fetch medical info, save/retrieve/delete patient context, and calculate relevant clinical scores. No obvious missing operations for the stated purpose.