Health
在常规单位(mg/dL)与 SI 单位(mmol/L)之间转换血清总钙。钙原子量 40.078,换算因子固定:mg/dL × 0.25 = mmol/L(×4.0 反向)。参考范围(成人总钙,白蛋白正常):8.6–10.3 mg/dL(2.15–2.57 mmol/L)。低钙血症 <8.5 mg/dL(<2.12 mmol/L),严重 <7.0;高钙血症 >10.5 mg/dL(>2.62 mmol/L),严重 >14.0。注意:总钙需用 Payne 公式按白蛋白校正(校正钙 = 实测钙 + 0.8×(4.0−白蛋白 g/dL)),本工具仅转换实测值。来源:Payne BMJ 1973、Young 1987、StatPearls、Endocrine Society。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/calcium-unit-converter' \
-H 'Content-Type: application/json' \
-d '{"value":9.5,"sourceUnit":"mgdl","targetUnit":"mmol","decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/calcium-unit-converter| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| value | number | 是 | The total calcium value to convert (not albumin-corrected). |
| sourceUnit | select | 是 | The unit of the input value. |
| targetUnit | select | 是 | The unit to convert into. |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-calcium-unit-converter": {
"name": "calcium-unit-converter",
"description": "在常规单位(mg/dL)与 SI 单位(mmol/L)之间转换血清总钙。钙原子量 40.078,换算因子固定:mg/dL × 0.25 = mmol/L(×4.0 反向)。参考范围(成人总钙,白蛋白正常):8.6–10.3 mg/dL(2.15–2.57 mmol/L)。低钙血症 <8.5 mg/dL(<2.12 mmol/L),严重 <7.0;高钙血症 >10.5 mg/dL(>2.62 mmol/L),严重 >14.0。注意:总钙需用 Payne 公式按白蛋白校正(校正钙 = 实测钙 + 0.8×(4.0−白蛋白 g/dL)),本工具仅转换实测值。来源:Payne BMJ 1973、Young 1987、StatPearls、Endocrine Society。不构成医疗建议。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=calcium-unit-converter",
"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": "calcium-unit-converter",
"arguments": {
"value": 9.5,
"sourceUnit": "mgdl",
"targetUnit": "mmol",
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]