Health
由血清铁蛋白估算体内储存铁。简化公式 储存铁 (mg) ≈ 铁蛋白 (µg/L) × 10;按体重公式 储存铁 (mg) ≈ 铁蛋白 × 体重(kg) × 0.0024(更适配不同体型,来源 Walters 1973)。成人铁蛋白参考:男 ~30–300 µg/L,女 ~15–150 µg/L。男 < 30 / 女 < 15 µg/L 高度提示缺铁;炎症状态下铁蛋白 < 100 µg/L 仍不能排除缺铁。男 > 300 / 女 > 200 µg/L 且 TSAT > 45–50% 提示铁过载(遗传性血色病、代谢异常性铁过载、反复输血、慢性肝病、成人 Still 病、系统性炎症);> 1000 µg/L 需评估血色病、铁负荷性贫血或高铁蛋白综合征。注意:铁蛋白是急性期反应物,炎症/感染/肝病/肿瘤会独立升高——需结合 TSAT 与 CRP(或可溶性转铁蛋白受体)。来源 Camaschella 2019、Adams NEJM 2005、WHO 2020。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/ferritin-store-estimator' \
-H 'Content-Type: application/json' \
-d '{"ferritin":12,"weight":0,"sex":"female","method":"size","decimalPlaces":1}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/ferritin-store-estimator| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| ferritin | number | 是 | Serum ferritin in µg/L (equivalent to ng/mL). Adult reference: men ~30–300, women ~15–150. |
| weight | number | 否 | Body weight in kg. Optional; required only for the body-weight estimation method. |
| sex | select | 否 | Used to select sex-specific ferritin reference thresholds (men 30–300, women 15–150 µg/L). |
| method | select | 否 | Size-independent rule (stored iron ≈ ferritin × 10) or body-weight rule (ferritin × weight × 0.0024). |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-ferritin-store-estimator": {
"name": "ferritin-store-estimator",
"description": "由血清铁蛋白估算体内储存铁。简化公式 储存铁 (mg) ≈ 铁蛋白 (µg/L) × 10;按体重公式 储存铁 (mg) ≈ 铁蛋白 × 体重(kg) × 0.0024(更适配不同体型,来源 Walters 1973)。成人铁蛋白参考:男 ~30–300 µg/L,女 ~15–150 µg/L。男 < 30 / 女 < 15 µg/L 高度提示缺铁;炎症状态下铁蛋白 < 100 µg/L 仍不能排除缺铁。男 > 300 / 女 > 200 µg/L 且 TSAT > 45–50% 提示铁过载(遗传性血色病、代谢异常性铁过载、反复输血、慢性肝病、成人 Still 病、系统性炎症);> 1000 µg/L 需评估血色病、铁负荷性贫血或高铁蛋白综合征。注意:铁蛋白是急性期反应物,炎症/感染/肝病/肿瘤会独立升高——需结合 TSAT 与 CRP(或可溶性转铁蛋白受体)。来源 Camaschella 2019、Adams NEJM 2005、WHO 2020。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ferritin-store-estimator",
"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": "ferritin-store-estimator",
"arguments": {
"ferritin": 12,
"weight": 0,
"sex": "female",
"method": "size",
"decimalPlaces": 1
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}