Health
Le score NIHSS quantifie le déficit neurologique d'un AVC aigu : 1a niveau de conscience (0-3), 1b questions (mois/âge, 0-2), 1c commandes (yeux/poigne, 0-2), 2 regard (0-2), 3 champs visuels (0-3), 4 paralysie faciale (0-3), 5a/5b moteur bras (g/d, 0-4), 6a/6b moteur jambe (0-4), 7 ataxie (0-2), 8 sensibilité (0-2), 9 langage (0-3), 10 dysarthrie (0-2), 11 extinction/inattention (0-2) ; le côté le plus atteint entre dans le total ; 0-42. 0 sans symptôme, 1-4 mineur, 5-15 modéré, 16-20 modéré à sévère, 21-42 sévère. Sources : Brott 1989 Stroke, NINDS, MDCalc. Fiabilité faible sans formation ; à réaliser par du personnel formé. Non un avis médical.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/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"}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/nihss-score| Nom | Type | Requis | Description |
|---|---|---|---|
| loc | select | Oui | 0 = alert; 3 = unresponsive. |
| locQuestions | select | Oui | Ask the month and the patient's age. 0 = both correct; 2 = neither correct. |
| locCommands | select | Oui | Open/close eyes and grip/non-grip hand. 0 = both correct; 2 = neither. |
| gaze | select | Oui | Test horizontal eye movement. 0 = normal; 2 = forced deviation / total paresis. |
| visual | select |
| Confrontation testing. 0 = no loss; 3 = bilateral hemianopia / blind. |
| facialPalsy | select | Oui | 0 = normal symmetry; 3 = complete unilateral/bilateral paralysis. |
| motorArmLeft | select | Oui | Drift test, left arm. 0 = no drift; 4 = no movement. |
| motorArmRight | select | Oui | Drift test, right arm. 0 = no drift; 4 = no movement. |
| motorLegLeft | select | Oui | Drift test, left leg. 0 = no drift; 4 = no movement. |
| motorLegRight | select | Oui | Drift test, right leg. 0 = no drift; 4 = no movement. |
| ataxia | select | Oui | Finger-nose / heel-shin. 0 = absent; 2 = present in two limbs. |
| sensory | select | Oui | Pinprick on face, arm, trunk, leg. 0 = normal; 2 = severe-to-total loss. |
| language | select | Oui | Naming, read list, describe picture. 0 = no aphasia; 3 = mute / global aphasia. |
| dysarthria | select | Oui | Read/repeat words. 0 = normal articulation; 2 = severe/unintelligible or mute. |
| extinction | select | Oui | Double simultaneous stimulation. 0 = no neglect; 2 = complete neglect (two modalities). |
Résultat JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-nihss-score": {
"name": "nihss-score",
"description": "Le score NIHSS quantifie le déficit neurologique d'un AVC aigu : 1a niveau de conscience (0-3), 1b questions (mois/âge, 0-2), 1c commandes (yeux/poigne, 0-2), 2 regard (0-2), 3 champs visuels (0-3), 4 paralysie faciale (0-3), 5a/5b moteur bras (g/d, 0-4), 6a/6b moteur jambe (0-4), 7 ataxie (0-2), 8 sensibilité (0-2), 9 langage (0-3), 10 dysarthrie (0-2), 11 extinction/inattention (0-2) ; le côté le plus atteint entre dans le total ; 0-42. 0 sans symptôme, 1-4 mineur, 5-15 modéré, 16-20 modéré à sévère, 21-42 sévère. Sources : Brott 1989 Stroke, NINDS, MDCalc. Fiabilité faible sans formation ; à réaliser par du personnel formé. Non un avis médical.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=nihss-score",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"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"
}
}
}Des questions ou un problème ? Contactez [email protected]