Health
Berechnet die Serum-Osmolalität. Konventionelle Formel Osm = 2×Na + Glukose/18 + BUN/2.8 (Na in mmol/L, Glukose und BUN in mg/dL); SI-Formel Osm = 2×Na + Glukose + Harnstoff (alle in mmol/L). Bei Verdacht auf toxische Alkohole zusätzlicher Ethanol-Term EtOH/4.6. Norm ≈ 275–295 mOsm/kg. <275 → Hypo-Osmolalität (SIADH, primäre Polydipsie, Nebenniereninsuffizienz, Hypothyreose); >295 → Hyper-Osmolalität (Hyperglykämie HHDK, Hypernatriämie/Wasserverlust, Urämie, Mannitol, toxische Alkohole — diese erhöhen auch die osmotische Lücke). Quellen: Dorwart 1975, Rasouli 2014, MDCalc. Keine medizinische Beratung.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/serum-osmolality-calculator' \
-H 'Content-Type: application/json' \
-d '{"unitSystem":"conventional","sodium":140,"glucose":110,"bunOrUrea":14,"ethanol":0,"decimalPlaces":1}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/serum-osmolality-calculator| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| unitSystem | select | Ja | — |
| sodium | number | Ja | Serum sodium (mmol/L), always in mmol/L regardless of unit system. Physiologic range ~120–160. |
| glucose | number | Ja | Serum glucose. mg/dL under Conventional units, mmol/L under SI units. |
| bunOrUrea | number | Ja | BUN in mg/dL under Conventional units, or serum urea in mmol/L under SI units. |
| ethanol | number |
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-serum-osmolality-calculator": {
"name": "serum-osmolality-calculator",
"description": "Berechnet die Serum-Osmolalität. Konventionelle Formel Osm = 2×Na + Glukose/18 + BUN/2.8 (Na in mmol/L, Glukose und BUN in mg/dL); SI-Formel Osm = 2×Na + Glukose + Harnstoff (alle in mmol/L). Bei Verdacht auf toxische Alkohole zusätzlicher Ethanol-Term EtOH/4.6. Norm ≈ 275–295 mOsm/kg. <275 → Hypo-Osmolalität (SIADH, primäre Polydipsie, Nebenniereninsuffizienz, Hypothyreose); >295 → Hyper-Osmolalität (Hyperglykämie HHDK, Hypernatriämie/Wasserverlust, Urämie, Mannitol, toxische Alkohole — diese erhöhen auch die osmotische Lücke). Quellen: Dorwart 1975, Rasouli 2014, MDCalc. Keine medizinische Beratung.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=serum-osmolality-calculator",
"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": "serum-osmolality-calculator",
"arguments": {
"unitSystem": "conventional",
"sodium": 140,
"glucose": 110,
"bunOrUrea": 14,
"ethanol": 0,
"decimalPlaces": 1
}
}
}| Serum ethanol in mg/dL. Optional; adds EtOH/4.6 to the calculated osmolality (conventional units). |
| decimalPlaces | number | Nein | — |
JSON-Ergebnis
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Fragen oder Probleme? Kontakt: [email protected]