Health
Berechnet gleichzeitig drei Pneumonie-Scores und vergleicht sie: CURB-65 (0-5, Zuweisung), PSI/PORT (Klasse I-V, genaueste Mortalitätsstratifizierung), SMART-COP (0-10, sagt den Bedarf für Beatmung/Vasopressoren auf der ITS voraus). Jeder hat einen Fokus: CURB-65 schnell; PSI genauer, aber komplexer; SMART-COP erkennt ITS-Bedarf. Zeigt Gesamtwert und Kategorie jedes Scores sowie die Übereinstimmung (alle ambulant/stationär/ITS). Bei Diskordanz eher konservatives Vorgehen. Quellen: Lim 2003, Fine 1997, Charles 2008. Keine medizinische Beratung.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/curb-65-vs-pneumonia-severity' \
-H 'Content-Type: application/json' \
-d '{"age":70,"sex":"male","nursingHome":false,"confusion":true,"urea":true,"rr30":true,"rr25":true,"sbp90":true,"dbp60":false,"pulse125":false,"tempExtreme":false,"phLow":true,"naLow":false,"glucoseHigh":false,"hctLow":false,"pao2Low":true,"pleuralEffusion":false,"multilobar":true,"albuminLow":true,"neoplastic":false,"liver":false,"chf":false,"cerebrovascular":false,"renal":false}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/curb-65-vs-pneumonia-severity| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| age | number | Ja | Age in years. Used by all three scores. |
| sex | select | Ja | PSI subtracts 10 points for women. |
| nursingHome | checkbox | Nein | PSI +10. |
| confusion | checkbox | Nein | CURB-65 +1; SMART-COP +1. |
| urea | checkbox | Nein | CURB-65 +1; PSI +20 (BUN ≥30 mg/dL family). |
| rr30 | checkbox | Nein | CURB-65 +1; PSI +20. |
| rr25 | checkbox | Nein | SMART-COP +1 (lower RR threshold than CURB-65). |
| sbp90 | checkbox | Nein | CURB-65 +1; PSI +20; SMART-COP +2. |
| dbp60 | checkbox | Nein | CURB-65 +1 (CURB-65 BP criterion, OR with SBP). |
| pulse125 | checkbox | Nein | PSI +10; SMART-COP +1. |
| tempExtreme | checkbox | Nein | PSI +15 (and PSI Step 1 screening). |
| phLow | checkbox | Nein | PSI +30; SMART-COP +1. |
| naLow | checkbox | Nein | PSI +20. |
| glucoseHigh | checkbox | Nein | PSI +10. |
| hctLow | checkbox | Nein | PSI +10. |
| pao2Low | checkbox | Nein | PSI +10; SMART-COP +2 (hypoxia). |
| pleuralEffusion | checkbox | Nein | PSI +10. |
| multilobar | checkbox | Nein | SMART-COP +1. |
| albuminLow | checkbox | Nein | SMART-COP +1. |
| neoplastic | checkbox | Nein | PSI +30 (and PSI Step 1 screening). |
| liver | checkbox | Nein | PSI +20 (and PSI Step 1 screening). |
| chf | checkbox | Nein | PSI +10 (and PSI Step 1 screening). |
| cerebrovascular | checkbox | Nein | PSI +10 (and PSI Step 1 screening). |
| renal | checkbox | Nein | PSI +10 (and PSI Step 1 screening). |
JSON-Ergebnis
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-curb-65-vs-pneumonia-severity": {
"name": "curb-65-vs-pneumonia-severity",
"description": "Berechnet gleichzeitig drei Pneumonie-Scores und vergleicht sie: CURB-65 (0-5, Zuweisung), PSI/PORT (Klasse I-V, genaueste Mortalitätsstratifizierung), SMART-COP (0-10, sagt den Bedarf für Beatmung/Vasopressoren auf der ITS voraus). Jeder hat einen Fokus: CURB-65 schnell; PSI genauer, aber komplexer; SMART-COP erkennt ITS-Bedarf. Zeigt Gesamtwert und Kategorie jedes Scores sowie die Übereinstimmung (alle ambulant/stationär/ITS). Bei Diskordanz eher konservatives Vorgehen. Quellen: Lim 2003, Fine 1997, Charles 2008. Keine medizinische Beratung.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=curb-65-vs-pneumonia-severity",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "curb-65-vs-pneumonia-severity",
"arguments": {
"age": 70,
"sex": "male",
"nursingHome": false,
"confusion": true,
"urea": true,
"rr30": true,
"rr25": true,
"sbp90": true,
"dbp60": false,
"pulse125": false,
"tempExtreme": false,
"phLow": true,
"naLow": false,
"glucoseHigh": false,
"hctLow": false,
"pao2Low": true,
"pleuralEffusion": false,
"multilobar": true,
"albuminLow": true,
"neoplastic": false,
"liver": false,
"chf": false,
"cerebrovascular": false,
"renal": false
}
}
}Fragen oder Probleme? Kontakt: [email protected]