Health
Der NIHSS-Score quantifiziert das neurologische Defizit beim akuten Schlaganfall: 1a Bewusstseinslage (0-3), 1b Orientierungsfragen (Monat/Alter, 0-2), 1c Befehle (Augen/Handdruck, 0-2), 2 Blick (0-2), 3 Gesichtsfelder (0-3), 4 Fazialisparese (0-3), 5a/5b Motorik Arm (li/re, 0-4), 6a/6b Motorik Bein (0-4), 7 Ataxie (0-2), 8 Sensibilität (0-2), 9 Sprache (0-3), 10 Dysarthrie (0-2), 11 Extinktion/Inattention (0-2); die stärker betroffene Seite geht in die Summe ein; 0-42. 0 ohne Symptome, 1-4 leicht, 5-15 mittelschwer, 16-20 mittel bis schwer, 21-42 schwer. Quellen: Brott 1989 Stroke, NINDS, MDCalc. Ohne Training geringe Reliabilität; durch geschultes Personal anwenden. Keine medizinische Beratung.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/nihss-score' \
-H 'Content-Type: application/json' \
-d '{"loc":"1","locQuestions":"1","locCommands":"1","gaze":"2","visual":"2","facialPalsy":"2","motorArmLeft":"0","motorArmRight":"2","motorLegLeft":"0","motorLegRight":"2","ataxia":"0","sensory":"1","language":"0","dysarthria":"1","extinction":"1"}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/nihss-score| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| loc | select | Ja | 0 = alert; 3 = unresponsive. |
| locQuestions | select | Ja | Ask the month and the patient's age. 0 = both correct; 2 = neither correct. |
| locCommands | select | Ja | Open/close eyes and grip/non-grip hand. 0 = both correct; 2 = neither. |
| gaze | select | Ja | Test horizontal eye movement. 0 = normal; 2 = forced deviation / total paresis. |
| visual | select | Ja | Confrontation testing. 0 = no loss; 3 = bilateral hemianopia / blind. |
| facialPalsy | select | Ja | 0 = normal symmetry; 3 = complete unilateral/bilateral paralysis. |
| motorArmLeft | select | Ja | Drift test, left arm. 0 = no drift; 4 = no movement. |
| motorArmRight | select | Ja | Drift test, right arm. 0 = no drift; 4 = no movement. |
| motorLegLeft | select | Ja | Drift test, left leg. 0 = no drift; 4 = no movement. |
| motorLegRight | select | Ja | Drift test, right leg. 0 = no drift; 4 = no movement. |
| ataxia | select | Ja | Finger-nose / heel-shin. 0 = absent; 2 = present in two limbs. |
| sensory | select | Ja | Pinprick on face, arm, trunk, leg. 0 = normal; 2 = severe-to-total loss. |
| language | select | Ja | Naming, read list, describe picture. 0 = no aphasia; 3 = mute / global aphasia. |
| dysarthria | select | Ja | Read/repeat words. 0 = normal articulation; 2 = severe/unintelligible or mute. |
| extinction | select | Ja | Double simultaneous stimulation. 0 = no neglect; 2 = complete neglect (two modalities). |
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-nihss-score": {
"name": "nihss-score",
"description": "Der NIHSS-Score quantifiziert das neurologische Defizit beim akuten Schlaganfall: 1a Bewusstseinslage (0-3), 1b Orientierungsfragen (Monat/Alter, 0-2), 1c Befehle (Augen/Handdruck, 0-2), 2 Blick (0-2), 3 Gesichtsfelder (0-3), 4 Fazialisparese (0-3), 5a/5b Motorik Arm (li/re, 0-4), 6a/6b Motorik Bein (0-4), 7 Ataxie (0-2), 8 Sensibilität (0-2), 9 Sprache (0-3), 10 Dysarthrie (0-2), 11 Extinktion/Inattention (0-2); die stärker betroffene Seite geht in die Summe ein; 0-42. 0 ohne Symptome, 1-4 leicht, 5-15 mittelschwer, 16-20 mittel bis schwer, 21-42 schwer. Quellen: Brott 1989 Stroke, NINDS, MDCalc. Ohne Training geringe Reliabilität; durch geschultes Personal anwenden. Keine medizinische Beratung.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=nihss-score",
"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": "nihss-score",
"arguments": {
"loc": "1",
"locQuestions": "1",
"locCommands": "1",
"gaze": "2",
"visual": "2",
"facialPalsy": "2",
"motorArmLeft": "0",
"motorArmRight": "2",
"motorLegLeft": "0",
"motorLegRight": "2",
"ataxia": "0",
"sensory": "1",
"language": "0",
"dysarthria": "1",
"extinction": "1"
}
}
}Fragen oder Probleme? Kontakt: [email protected]