Health
Cockcroft-Gault 肌酐清除率:CrCl = (140−年龄)×体重/(72×SCr),女性 ×0.85。可选 ABW(实际体重)/IBW(Devine 理想体重)/AdjBW(校正体重,肥胖用 0.4 系数)。老年/低肌肉量可勾选 SCr 不低于 1.0 mg/dL。输出为未体表面积化的 mL/min,是药物剂量调整所用的值。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/creatinine-clearance-cockcroft' \
-H 'Content-Type: application/json' \
-d '{"age":70,"sex":"male","weight":75,"height":0,"serumCreatinine":1,"weightBasis":"ABW","roundScr":false,"decimalPlaces":4}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/creatinine-clearance-cockcroft| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| age | number | 是 | Patient age in years. Must be ≥18 and ≤120. |
| sex | select | 否 | — |
| weight | number | 是 | Actual body weight in kg. Must be positive. |
| height | number | 否 | Height in cm. Required when weight basis is IBW or AdjBW. |
| serumCreatinine | number | 是 | Serum creatinine in mg/dL. Must be positive. |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-creatinine-clearance-cockcroft": {
"name": "creatinine-clearance-cockcroft",
"description": "Cockcroft-Gault 肌酐清除率:CrCl = (140−年龄)×体重/(72×SCr),女性 ×0.85。可选 ABW(实际体重)/IBW(Devine 理想体重)/AdjBW(校正体重,肥胖用 0.4 系数)。老年/低肌肉量可勾选 SCr 不低于 1.0 mg/dL。输出为未体表面积化的 mL/min,是药物剂量调整所用的值。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=creatinine-clearance-cockcroft",
"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-clearance-cockcroft",
"arguments": {
"age": 70,
"sex": "male",
"weight": 75,
"height": 0,
"serumCreatinine": 1,
"weightBasis": "ABW",
"roundScr": false,
"decimalPlaces": 4
}
}
}有问题或反馈?请联系 [email protected]
| weightBasis |
| select |
| 否 |
| — |
| roundScr | checkbox | 否 | If checked and SCr < 1.0 mg/dL, use 1.0 mg/dL (convention to avoid overestimating CrCl in elderly/low-muscle-mass patients). |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}