Health
计算 UNOS/OPTN MELD-Na(美国 2016 年 1 月起用于成人肝移植分配,2023 年 7 月被 MELD 3.0 取代):先按经典公式算 MELD(i)(限制 6-40);当 MELD(i)>11 时,MELD-Na = MELD(i) + 1.32·(137−Na) − 0.033·MELD(i)·(137−Na),血钠限制在 125-137 mmol/L;MELD(i)≤11 时不做钠调整,直接等于 MELD(i)。最终取整并限制在 6-40。原理:低钠(<137)预示等候名单死亡率更高,故上调分数;交互项在高 MELD(i) 时缩小钠罚分。来源 Kim/Biggins 2008 NEJM、UNOS/OPTN 2016。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/meld-na-score' \
-H 'Content-Type: application/json' \
-d '{"creatinine":1.5,"bilirubin":3,"inr":1.8,"sodium":130,"dialysis":false,"decimalPlaces":4}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/meld-na-score| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| creatinine | number | 是 | Serum creatinine in mg/dL. Floored at 1.0, capped at 4.0 (4.0 if dialyzed). Must be positive. |
| bilirubin | number | 是 | Total bilirubin in mg/dL. Floored at 1.0. Must be positive. |
| inr | number | 是 | INR. Floored at 1.0. Must be positive. |
| sodium | number | 是 | Serum sodium in mmol/L. Clamped to 125–137 for the MELD-Na adjustment. Must be positive. |
| dialysis | checkbox | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-meld-na-score": {
"name": "meld-na-score",
"description": "计算 UNOS/OPTN MELD-Na(美国 2016 年 1 月起用于成人肝移植分配,2023 年 7 月被 MELD 3.0 取代):先按经典公式算 MELD(i)(限制 6-40);当 MELD(i)>11 时,MELD-Na = MELD(i) + 1.32·(137−Na) − 0.033·MELD(i)·(137−Na),血钠限制在 125-137 mmol/L;MELD(i)≤11 时不做钠调整,直接等于 MELD(i)。最终取整并限制在 6-40。原理:低钠(<137)预示等候名单死亡率更高,故上调分数;交互项在高 MELD(i) 时缩小钠罚分。来源 Kim/Biggins 2008 NEJM、UNOS/OPTN 2016。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=meld-na-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": "meld-na-score",
"arguments": {
"creatinine": 1.5,
"bilirubin": 3,
"inr": 1.8,
"sodium": 130,
"dialysis": false,
"decimalPlaces": 4
}
}
}有问题或反馈?请联系 [email protected]
| If dialyzed at least twice or on CVVHD for ≥ 24 hours in the past week, creatinine is set to 4.0 mg/dL. |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}