Health
计算 APACHE II 危重病评分:急性生理评分 APS(12 项生理变量,每项 0-4 分,取入 ICU 24h 内最差值)+ 年龄分(0-6)+ 慢性健康分(0/2/5),总分 0-71,越高预后越差。氧合:FiO₂≥0.5 用 A-a 梯度,否则用 PaO₂;急性肾衰时肌酐分翻倍;GCS 计 15−GCS。同时给出基础死亡风险预测(logit=−3.517+0.146×分,不含诊断类别权重)。来源 Knaus 1985 Crit Care Med、SFAR 评分表。不能替代临床判断。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/apache-ii-score' \
-H 'Content-Type: application/json' \
-d '{"temperature":38.9,"map":65,"heartRate":130,"respiratoryRate":30,"fio2":0.8,"pao2":0,"aaGradient":350,"ph":7.25,"sodium":138,"potassium":5.6,"creatinine":2.5,"arf":true,"hematocrit":32,"wbc":18,"gcs":10,"age":70,"chronicHealth":"nonelective"}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/apache-ii-score| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| temperature | number | 是 | Core/rectal temperature °C. |
| map | number | 是 | Mean arterial pressure mmHg. |
| heartRate | number | 是 | Heart rate beats/min. |
| respiratoryRate | number | 是 | Respiratory rate breaths/min (vented or spontaneous). |
| fio2 | number | 是 | Fraction of inspired oxygen (0.21–1.0). If ≥0.5, A-a gradient is used. |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-apache-ii-score": {
"name": "apache-ii-score",
"description": "计算 APACHE II 危重病评分:急性生理评分 APS(12 项生理变量,每项 0-4 分,取入 ICU 24h 内最差值)+ 年龄分(0-6)+ 慢性健康分(0/2/5),总分 0-71,越高预后越差。氧合:FiO₂≥0.5 用 A-a 梯度,否则用 PaO₂;急性肾衰时肌酐分翻倍;GCS 计 15−GCS。同时给出基础死亡风险预测(logit=−3.517+0.146×分,不含诊断类别权重)。来源 Knaus 1985 Crit Care Med、SFAR 评分表。不能替代临床判断。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=apache-ii-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": "apache-ii-score",
"arguments": {
"temperature": 38.9,
"map": 65,
"heartRate": 130,
"respiratoryRate": 30,
"fio2": 0.8,
"pao2": 0,
"aaGradient": 350,
"ph": 7.25,
"sodium": 138,
"potassium": 5.6,
"creatinine": 2.5,
"arf": true,
"hematocrit": 32,
"wbc": 18,
"gcs": 10,
"age": 70,
"chronicHealth": "nonelective"
}
}
}有问题或反馈?请联系 [email protected]
| pao2 | number | 否 | Arterial PaO₂ mmHg. Used when FiO₂ < 0.5. |
| aaGradient | number | 否 | Alveolar-arterial gradient mmHg. Used when FiO₂ ≥ 0.5. |
| ph | number | 是 | Arterial pH. |
| sodium | number | 是 | Serum sodium mmol/L. |
| potassium | number | 是 | Serum potassium mmol/L. |
| creatinine | number | 是 | Serum creatinine mg/dL. |
| arf | checkbox | 否 | Acute renal failure doubles the creatinine points. |
| hematocrit | number | 是 | Hematocrit %. |
| wbc | number | 是 | White blood cell count ×10³/µL. |
| gcs | number | 是 | Glasgow Coma Scale total (3–15). Contributes 15 − GCS. |
| age | number | 是 | Age in years. |
| chronicHealth | select | 是 | Severe organ insufficiency or immunocompromise: none = 0, elective postoperative = 2, non-operative or emergency postoperative = 5. |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}