Health
Wells 肺栓塞评分用于肺栓塞的临床概率评估:DVT 临床征象(+3)、PE 为最可能诊断(+3)、心率>100(+1.5)、制动≥3 天或近 4 周手术(+1.5)、既往客观诊断的 DVT/PE(+1.5)、咯血(+1)、活动性肿瘤(+1)。提供两种解释:三分层(<2 低约1.3%、2-6 中约16.2%、>6 高约37.5%);二分层(≤4 不太可能约12.1%,阴性 D-二聚体可排除;>4 可能约37.5%,需影像)。来源 Wells 2001 Ann Intern Med、ACEP 2018、ESC 2019。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/wells-pe-score' \
-H 'Content-Type: application/json' \
-d '{"dvtSigns":false,"peMostLikely":true,"tachycardia":true,"immobilization":false,"previousVte":false,"hemoptysis":true,"malignancy":false}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/wells-pe-score| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| dvtSigns | checkbox | 否 | Leg swelling and pain with palpation of the deep veins. +3. |
| peMostLikely | checkbox | 否 | PE is the #1 or equally likely diagnosis (alternative diagnosis less likely than PE). +3. |
| tachycardia | checkbox | 否 | Heart rate > 100 beats/min. +1.5. |
| immobilization | checkbox | 否 | Recent immobilization ≥3 days or surgery within the last 4 weeks. +1.5. |
| previousVte | checkbox | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-wells-pe-score": {
"name": "wells-pe-score",
"description": "Wells 肺栓塞评分用于肺栓塞的临床概率评估:DVT 临床征象(+3)、PE 为最可能诊断(+3)、心率>100(+1.5)、制动≥3 天或近 4 周手术(+1.5)、既往客观诊断的 DVT/PE(+1.5)、咯血(+1)、活动性肿瘤(+1)。提供两种解释:三分层(<2 低约1.3%、2-6 中约16.2%、>6 高约37.5%);二分层(≤4 不太可能约12.1%,阴性 D-二聚体可排除;>4 可能约37.5%,需影像)。来源 Wells 2001 Ann Intern Med、ACEP 2018、ESC 2019。不构成医疗建议。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=wells-pe-score",
"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": "wells-pe-score",
"arguments": {
"dvtSigns": false,
"peMostLikely": true,
"tachycardia": true,
"immobilization": false,
"previousVte": false,
"hemoptysis": true,
"malignancy": false
}
}
}有问题或反馈?请联系 [email protected]
| Previous objectively diagnosed DVT or PE. +1.5. |
| hemoptysis | checkbox | 否 | Hemoptysis. +1. |
| malignancy | checkbox | 否 | Active malignancy (treatment ongoing, palliative, or within last 6 months). +1. |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}