Health
NIH 卒中量表(NIHSS)量化急性卒中的神经功能缺损:1a 意识水平(0-3)、1b 意识提问(月龄/年龄, 0-2)、1c 意识指令(睁闭眼/握拳, 0-2)、2 凝视(0-2)、3 视野(0-3)、4 面瘫(0-3)、5a/5b 上肢运动左右各(0-4)、6a/6b 下肢运动左右各(0-4)、7 肢体共济失调(0-2)、8 感觉(0-2)、9 语言(0-3)、10 构音障碍(0-2)、11 忽视/注意力(0-2),运动项取较重侧计入总分,总分 0-42。0 无症状、1-4 轻度、5-15 中度、16-20 中重度、21-42 重度。来源 Brott 1989 Stroke、NINDS、MDCalc。非专业评分者评分一致性较低,应由培训过的人员完成。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/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"}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/nihss-score| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| loc | select | 是 | 0 = alert; 3 = unresponsive. |
| locQuestions | select | 是 | Ask the month and the patient's age. 0 = both correct; 2 = neither correct. |
| locCommands | select | 是 | Open/close eyes and grip/non-grip hand. 0 = both correct; 2 = neither. |
| gaze | select | 是 | Test horizontal eye movement. 0 = normal; 2 = forced deviation / total paresis. |
| visual | select | 是 | Confrontation testing. 0 = no loss; 3 = bilateral hemianopia / blind. |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-nihss-score": {
"name": "nihss-score",
"description": "NIH 卒中量表(NIHSS)量化急性卒中的神经功能缺损:1a 意识水平(0-3)、1b 意识提问(月龄/年龄, 0-2)、1c 意识指令(睁闭眼/握拳, 0-2)、2 凝视(0-2)、3 视野(0-3)、4 面瘫(0-3)、5a/5b 上肢运动左右各(0-4)、6a/6b 下肢运动左右各(0-4)、7 肢体共济失调(0-2)、8 感觉(0-2)、9 语言(0-3)、10 构音障碍(0-2)、11 忽视/注意力(0-2),运动项取较重侧计入总分,总分 0-42。0 无症状、1-4 轻度、5-15 中度、16-20 中重度、21-42 重度。来源 Brott 1989 Stroke、NINDS、MDCalc。非专业评分者评分一致性较低,应由培训过的人员完成。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=nihss-score",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"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"
}
}
}有问题或反馈?请联系 [email protected]
| facialPalsy | select | 是 | 0 = normal symmetry; 3 = complete unilateral/bilateral paralysis. |
| motorArmLeft | select | 是 | Drift test, left arm. 0 = no drift; 4 = no movement. |
| motorArmRight | select | 是 | Drift test, right arm. 0 = no drift; 4 = no movement. |
| motorLegLeft | select | 是 | Drift test, left leg. 0 = no drift; 4 = no movement. |
| motorLegRight | select | 是 | Drift test, right leg. 0 = no drift; 4 = no movement. |
| ataxia | select | 是 | Finger-nose / heel-shin. 0 = absent; 2 = present in two limbs. |
| sensory | select | 是 | Pinprick on face, arm, trunk, leg. 0 = normal; 2 = severe-to-total loss. |
| language | select | 是 | Naming, read list, describe picture. 0 = no aphasia; 3 = mute / global aphasia. |
| dysarthria | select | 是 | Read/repeat words. 0 = normal articulation; 2 = severe/unintelligible or mute. |
| extinction | select | 是 | Double simultaneous stimulation. 0 = no neglect; 2 = complete neglect (two modalities). |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}