Health
在常规单位(mg/dL)与 SI 单位(µmol/L)之间转换血清/尿液肌酐。肌酐(C₄H₇N₃O)摩尔质量 113.12 g/mol,换算因子固定:mg/dL × 88.4 = µmol/L(÷88.4)。参考范围(成人):男性 0.74–1.35 mg/dL(65–120 µmol/L);女性 0.59–1.04 mg/dL(52–92 µmol/L)。AKI(KDIGO)标准:48 小时内升高 ≥0.3 mg/dL(≥27 µmol/L)或达基线 1.5 倍。来源:KDIGO 2012、Young Ann Intern Med 1987、StatPearls。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/creatinine-unit-converter' \
-H 'Content-Type: application/json' \
-d '{"value":1.35,"sourceUnit":"mgdl","targetUnit":"umol","decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/creatinine-unit-converter| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| value | number | 是 | The creatinine value to convert. |
| 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-creatinine-unit-converter": {
"name": "creatinine-unit-converter",
"description": "在常规单位(mg/dL)与 SI 单位(µmol/L)之间转换血清/尿液肌酐。肌酐(C₄H₇N₃O)摩尔质量 113.12 g/mol,换算因子固定:mg/dL × 88.4 = µmol/L(÷88.4)。参考范围(成人):男性 0.74–1.35 mg/dL(65–120 µmol/L);女性 0.59–1.04 mg/dL(52–92 µmol/L)。AKI(KDIGO)标准:48 小时内升高 ≥0.3 mg/dL(≥27 µmol/L)或达基线 1.5 倍。来源:KDIGO 2012、Young Ann Intern Med 1987、StatPearls。不构成医疗建议。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=creatinine-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": "creatinine-unit-converter",
"arguments": {
"value": 1.35,
"sourceUnit": "mgdl",
"targetUnit": "umol",
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]