Health
计算安全补钾参数以纠正低钾血症。口服为首选:单次 20–40 mEq KCl,每日总量上限 ~120 mEq(1 g KCl = 13.4 mEq K⁺)。外周静脉:≤10 mEq/h、浓度 ≤40 mEq/L(防静脉炎);中心静脉(ICU + 心电监护):≤20 mEq/h、浓度 ≤80 mEq/L;IV 每日总量上限 240 mEq。血钾每降 1 mmol/L 约对应 100–200 mEq 总体缺损(工具以体重粗估)。安全要点:IV KCl 必须用输液泵,严禁静脉推注(致心搏骤停);>10 mEq/h 需持续心电监护;q2–4h 复查血钾;先纠正低镁血症否则补钾无效;避免含糖液(胰岛素使 K⁺ 进入细胞)。来源 Gennari NEJM 1998、Cohn 2000、Kraft 2005、MDCalc、Asmar 2023。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/potassium-correction-rate' \
-H 'Content-Type: application/json' \
-d '{"route":"peripheral-iv","targetRise":1,"currentK":2.5,"weight":70,"decimalPlaces":1}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/potassium-correction-rate| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| route | select | 是 | — |
| targetRise | number | 是 | Desired serum K⁺ increase (mmol/L). E.g. from 2.5 to 3.5 = rise of 1.0. |
| currentK | number | 是 | Measured serum potassium (mmol/L). Normal range 3.5–5.0. |
| weight | number | 是 | Patient body weight (kg), used for deficit estimation. |
| decimalPlaces | number | 否 | — |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-potassium-correction-rate": {
"name": "potassium-correction-rate",
"description": "计算安全补钾参数以纠正低钾血症。口服为首选:单次 20–40 mEq KCl,每日总量上限 ~120 mEq(1 g KCl = 13.4 mEq K⁺)。外周静脉:≤10 mEq/h、浓度 ≤40 mEq/L(防静脉炎);中心静脉(ICU + 心电监护):≤20 mEq/h、浓度 ≤80 mEq/L;IV 每日总量上限 240 mEq。血钾每降 1 mmol/L 约对应 100–200 mEq 总体缺损(工具以体重粗估)。安全要点:IV KCl 必须用输液泵,严禁静脉推注(致心搏骤停);>10 mEq/h 需持续心电监护;q2–4h 复查血钾;先纠正低镁血症否则补钾无效;避免含糖液(胰岛素使 K⁺ 进入细胞)。来源 Gennari NEJM 1998、Cohn 2000、Kraft 2005、MDCalc、Asmar 2023。不构成医疗建议。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=potassium-correction-rate",
"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": "potassium-correction-rate",
"arguments": {
"route": "peripheral-iv",
"targetRise": 1,
"currentK": 2.5,
"weight": 70,
"decimalPlaces": 1
}
}
}有问题或反馈?请联系 [email protected]
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}