Health
计算肺循环血管阻力 PVR = (mPAP − PCWP)/CO(Wood 单位)= 80×(mPAP − PCWP)/CO(dyn·s/cm⁵)。mPAP 平均肺动脉压、PCWP 肺毛细血管楔压(≈左房压)、CO 心排血量。正常 <3 Wood(<240 dyn·s/cm⁵);升高见于肺动脉高压(PAH 第 1 组、第 2-5 组 PH)、低氧、肺栓塞、左向右分流。PVR 是区分毛细血管前/后 PH 的关键:毛细血管前 PH(mPAP>20,PCWP≤15);毛细血管后 PH(PCWP>15)。也是 PAH 药物治疗的目标。来源:Grossman 1991、Simonneau JACC 2019、Humbert ESC/ERS 2022、StatPearls、LITFL。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/pulmonary-vascular-resistance' \
-H 'Content-Type: application/json' \
-d '{"mpap":15,"pcwp":8,"co":5,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/pulmonary-vascular-resistance| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| mpap | number | 是 | Mean pulmonary artery pressure (mmHg) from right heart catheterization. |
| pcwp | number | 是 | Pulmonary capillary wedge pressure (mmHg) from RHC; approximates left atrial pressure. Typical 6–12 mmHg. |
| co | number | 是 | Cardiac output in L/min (from thermodilution, Fick, or echo). |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-pulmonary-vascular-resistance": {
"name": "pulmonary-vascular-resistance",
"description": "计算肺循环血管阻力 PVR = (mPAP − PCWP)/CO(Wood 单位)= 80×(mPAP − PCWP)/CO(dyn·s/cm⁵)。mPAP 平均肺动脉压、PCWP 肺毛细血管楔压(≈左房压)、CO 心排血量。正常 <3 Wood(<240 dyn·s/cm⁵);升高见于肺动脉高压(PAH 第 1 组、第 2-5 组 PH)、低氧、肺栓塞、左向右分流。PVR 是区分毛细血管前/后 PH 的关键:毛细血管前 PH(mPAP>20,PCWP≤15);毛细血管后 PH(PCWP>15)。也是 PAH 药物治疗的目标。来源:Grossman 1991、Simonneau JACC 2019、Humbert ESC/ERS 2022、StatPearls、LITFL。不构成医疗建议。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=pulmonary-vascular-resistance",
"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": "pulmonary-vascular-resistance",
"arguments": {
"mpap": 15,
"pcwp": 8,
"co": 5,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]