Health
Calculate the CURB-65 score to assess community-acquired pneumonia (CAP) severity and guide the site of care. Each component scores 1 point: Confusion (new-onset disorientation), Urea > 7 mmol/L (BUN > 20 mg/dL), Respiratory rate ≥ 30/min, Blood pressure (systolic < 90 OR diastolic ≤ 60 mmHg), and Age ≥ 65. Range 0–5. Interpretation: 0–1 low risk (likely outpatient; 30-day mortality ~1.5–2.4%), 2 moderate (consider admission or supervised discharge, ~9.2%), 3–5 high risk (hospital admission; consider ICU for 4–5; mortality rises to ~57% at score 5). Endorsed by the British Thoracic Society. Derived from Lim et al. 2003 (Thorax). Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/curb-65-score' \
-H 'Content-Type: application/json' \
-d '{"confusion":false,"urea":true,"respiratoryRate":false,"bloodPressure":true,"age65":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/curb-65-score| Name | Type | Required | Description |
|---|---|---|---|
| confusion | checkbox | No | New-onset mental disorientation (any acute confusion). +1. |
| urea | checkbox | No | Serum urea > 7 mmol/L (equivalent to BUN > 20 mg/dL). +1. |
| respiratoryRate | checkbox | No | Respiratory rate ≥ 30 breaths per minute. +1. |
| bloodPressure | checkbox | No | Systolic BP < 90 mmHg OR diastolic BP ≤ 60 mmHg. +1. |
| age65 | checkbox | No |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-curb-65-score": {
"name": "curb-65-score",
"description": "Calculate the CURB-65 score to assess community-acquired pneumonia (CAP) severity and guide the site of care. Each component scores 1 point: Confusion (new-onset disorientation), Urea > 7 mmol/L (BUN > 20 mg/dL), Respiratory rate ≥ 30/min, Blood pressure (systolic < 90 OR diastolic ≤ 60 mmHg), and Age ≥ 65. Range 0–5. Interpretation: 0–1 low risk (likely outpatient; 30-day mortality ~1.5–2.4%), 2 moderate (consider admission or supervised discharge, ~9.2%), 3–5 high risk (hospital admission; consider ICU for 4–5; mortality rises to ~57% at score 5). Endorsed by the British Thoracic Society. Derived from Lim et al. 2003 (Thorax). Not medical advice.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=curb-65-score",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "curb-65-score",
"arguments": {
"confusion": false,
"urea": true,
"respiratoryRate": false,
"bloodPressure": true,
"age65": true
}
}
}| Age 65 years or older. +1. |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]