Health
计算网织红细胞生成指数 RPI,校正贫血程度与外周血成熟时间。步骤:①校正网织红计数 CRC = 网织红% × (患者 Hct / 正常 Hct)(正常 Hct 男 45%、女 40%);②成熟因子(天)随 Hct 变化:45%→1.0,35%→1.5,25%→2.0,15%→2.5(线性插值);③RPI = CRC / 成熟因子。判读:RPI > 2(尤其 > 3)→ 骨髓反应适当,提示溶血或急性失血恢复期(骨髓在工作,找外周丢失/破坏);RPI < 2 → 低增生性贫血(缺铁、慢性病/炎症性贫血、再障、肾性贫血、MDS、骨髓浸润、治疗前巨幼细胞贫血)。注意:贫血剧烈变化时 RPI 欠可靠;如实验室报告绝对网织红计数(ARC,×10⁹/L),优先用 ARC。来源 Hillman & Finch、Berlin Blood 1959、MDCalc。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/reticulocyte-production-index' \
-H 'Content-Type: application/json' \
-d '{"reticPercent":10,"hct":22,"normalHctPreset":"male","normalHctCustom":0,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/reticulocyte-production-index| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| reticPercent | number | 是 | Reticulocyte percentage from the CBC differential (0–100). For example, enter 8 for 8%. |
| hct | number | 是 | Patient hematocrit in percent (e.g. 25 for 25%). |
| normalHctPreset | select | 否 | Choose the normal hematocrit reference used for the anemia correction. Male 45%, female 40%, or custom. |
| normalHctCustom | number | 否 | Custom normal hematocrit (%) — used only when 'Custom (%)' is selected above. |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-reticulocyte-production-index": {
"name": "reticulocyte-production-index",
"description": "计算网织红细胞生成指数 RPI,校正贫血程度与外周血成熟时间。步骤:①校正网织红计数 CRC = 网织红% × (患者 Hct / 正常 Hct)(正常 Hct 男 45%、女 40%);②成熟因子(天)随 Hct 变化:45%→1.0,35%→1.5,25%→2.0,15%→2.5(线性插值);③RPI = CRC / 成熟因子。判读:RPI > 2(尤其 > 3)→ 骨髓反应适当,提示溶血或急性失血恢复期(骨髓在工作,找外周丢失/破坏);RPI < 2 → 低增生性贫血(缺铁、慢性病/炎症性贫血、再障、肾性贫血、MDS、骨髓浸润、治疗前巨幼细胞贫血)。注意:贫血剧烈变化时 RPI 欠可靠;如实验室报告绝对网织红计数(ARC,×10⁹/L),优先用 ARC。来源 Hillman & Finch、Berlin Blood 1959、MDCalc。不构成医疗建议。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=reticulocyte-production-index",
"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": "reticulocyte-production-index",
"arguments": {
"reticPercent": 10,
"hct": 22,
"normalHctPreset": "male",
"normalHctCustom": 0,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}