Health
评估慢性肝病/肝硬化的严重程度与围术期死亡率:总胆红素(<2=1、2-3=2、>3 mg/dL=3,支持 µmol/L 自动 ÷17.1 换算)、白蛋白(>3.5=1、2.8-3.5=2、<2.8 g/dL=3)、INR(<1.7=1、1.7-2.3=2、>2.3=3)、腹水(无=1、轻度药物可控=2、中重度=3)、肝性脑病(无=1、I-II 级=2、III-IV 级=3)。总分 5-15:A 级(5-6) 代偿良好,1 年生存~100%/2 年~85%;B 级(7-9) 功能显著受损,1 年~80%/2 年~60%;C 级(10-15) 失代偿,1 年~45%/2 年~35%。来源 Pugh 1973 Br J Surg、MDCalc、StatPearls。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/child-pugh-score' \
-H 'Content-Type: application/json' \
-d '{"bilirubin":3.5,"bilirubinUnit":"mgdL","albumin":2.5,"inr":2.5,"ascites":"moderate","encephalopathy":"grade34"}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/child-pugh-score| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| bilirubin | number | 是 | Total serum bilirubin. Select the unit. mg/dL thresholds: <2 (1), 2–3 (2), >3 (3); µmol/L is auto-converted (÷17.1). |
| bilirubinUnit | select | 是 | Unit of the entered bilirubin value. µmol/L is converted to mg/dL (÷17.1) for scoring. |
| albumin | number | 是 | Serum albumin in g/dL. >3.5 (1), 2.8–3.5 (2), <2.8 (3). |
| inr | number | 是 | International normalized ratio (INR) or prothrombin time-derived. <1.7 (1), 1.7–2.3 (2), >2.3 (3). |
| ascites | select | 是 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-child-pugh-score": {
"name": "child-pugh-score",
"description": "评估慢性肝病/肝硬化的严重程度与围术期死亡率:总胆红素(<2=1、2-3=2、>3 mg/dL=3,支持 µmol/L 自动 ÷17.1 换算)、白蛋白(>3.5=1、2.8-3.5=2、<2.8 g/dL=3)、INR(<1.7=1、1.7-2.3=2、>2.3=3)、腹水(无=1、轻度药物可控=2、中重度=3)、肝性脑病(无=1、I-II 级=2、III-IV 级=3)。总分 5-15:A 级(5-6) 代偿良好,1 年生存~100%/2 年~85%;B 级(7-9) 功能显著受损,1 年~80%/2 年~60%;C 级(10-15) 失代偿,1 年~45%/2 年~35%。来源 Pugh 1973 Br J Surg、MDCalc、StatPearls。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=child-pugh-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": "child-pugh-score",
"arguments": {
"bilirubin": 3.5,
"bilirubinUnit": "mgdL",
"albumin": 2.5,
"inr": 2.5,
"ascites": "moderate",
"encephalopathy": "grade34"
}
}
}有问题或反馈?请联系 [email protected]
| Absent =1; slight / medically controlled =2; moderate to severe / refractory =3. |
| encephalopathy | select | 是 | None =1; grade I–II (suppressed with therapy) =2; grade III–IV (refractory) =3. |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}