Update README.md
Browse files
README.md
CHANGED
|
@@ -12,3 +12,40 @@ short_description: AI triage patient symptoms clinical triage tool
|
|
| 12 |
---
|
| 13 |
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
# 🩺 Clinical Triage MCP Server
|
| 18 |
+
|
| 19 |
+
This Hugging Face Space hosts an MCP (Multi-Modal Communication Protocol) server designed for clinical triage. It exposes tools that analyze user-reported symptoms and return structured medical guidance.
|
| 20 |
+
|
| 21 |
+
## ⚙️ How It Works
|
| 22 |
+
- Accepts structured input (e.g., "chest pain and shortness of breath")
|
| 23 |
+
- Returns structured JSON responses with:
|
| 24 |
+
- `urgency_level`
|
| 25 |
+
- `possible_condition`
|
| 26 |
+
- `recommended_action`
|
| 27 |
+
|
| 28 |
+
## 🌐 How to Use It
|
| 29 |
+
Pair this server with any MCP-compatible client. An example client is available here: [Clinical Triage Client](https://huggingface.co/spaces/lukmanaj/clinical-triage-client)
|
| 30 |
+
|
| 31 |
+
## 🔍 Example Output
|
| 32 |
+
```json
|
| 33 |
+
{
|
| 34 |
+
"urgency_level": "High",
|
| 35 |
+
"possible_condition": "cardiac distress or pulmonary embolism",
|
| 36 |
+
"recommended_action": "seek immediate emergency medical attention"
|
| 37 |
+
}
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## 📹 Demonstration
|
| 41 |
+
The space [here](https://huggingface.co/spaces/lukmanaj/clinical-triage-client/settings) actually uses this MCP server, demonstrating its usability.
|
| 42 |
+
|
| 43 |
+
## 🛠️ Built With
|
| 44 |
+
- Mistral API
|
| 45 |
+
- Gradio MCP interface
|
| 46 |
+
- Hugging Face Spaces
|
| 47 |
+
|
| 48 |
+
## 🏷️ Track
|
| 49 |
+
```text
|
| 50 |
+
mcp-server-track
|
| 51 |
+
|