Health
Wells DVT 评分评估深静脉血栓临床概率:活动性肿瘤(+1)、瘫痪/轻瘫/近期石膏(+1)、近期卧床≥3 天或大手术≤12 周(+1)、深静脉局限压痛(+1)、整条腿肿胀(+1)、小腿周径比对侧≥3cm(+1)、可凹性水肿局限于患肢(+1)、非曲张性侧支浅静脉(+1)、既往确诊 DVT(+1)、其他诊断至少同样可能(−2)。两种解释:三分层(≤0 低~5%、1-2 中~17%、≥3 高~17-53%);二分层(≤1 不太可能,阴性 D-二聚体可排除;≥2 可能,加压超声/D-二聚体)。来源 Wells 1997 Lancet、Goodacre 2005 BMJ。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/wells-dvt-score' \
-H 'Content-Type: application/json' \
-d '{"cancer":false,"paralysis":false,"bedridden":false,"tenderness":true,"wholeLeg":false,"calfSwelling":true,"pittingEdema":true,"collateralVeins":false,"previousDvt":false,"alternative":false}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/wells-dvt-score| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| cancer | checkbox | 否 | Active cancer (treatment within 6 months or palliative). +1. |
| paralysis | checkbox | 否 | Paralysis, paresis, or recent plaster immobilization of the lower extremities. +1. |
| bedridden | checkbox | 否 | Recently bedridden ≥3 days or major surgery within 12 weeks. +1. |
| tenderness | checkbox | 否 | Localized tenderness along the distribution of the deep venous system. +1. |
| wholeLeg | checkbox | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-wells-dvt-score": {
"name": "wells-dvt-score",
"description": "Wells DVT 评分评估深静脉血栓临床概率:活动性肿瘤(+1)、瘫痪/轻瘫/近期石膏(+1)、近期卧床≥3 天或大手术≤12 周(+1)、深静脉局限压痛(+1)、整条腿肿胀(+1)、小腿周径比对侧≥3cm(+1)、可凹性水肿局限于患肢(+1)、非曲张性侧支浅静脉(+1)、既往确诊 DVT(+1)、其他诊断至少同样可能(−2)。两种解释:三分层(≤0 低~5%、1-2 中~17%、≥3 高~17-53%);二分层(≤1 不太可能,阴性 D-二聚体可排除;≥2 可能,加压超声/D-二聚体)。来源 Wells 1997 Lancet、Goodacre 2005 BMJ。不构成医疗建议。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=wells-dvt-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-dvt-score",
"arguments": {
"cancer": false,
"paralysis": false,
"bedridden": false,
"tenderness": true,
"wholeLeg": false,
"calfSwelling": true,
"pittingEdema": true,
"collateralVeins": false,
"previousDvt": false,
"alternative": false
}
}
}有问题或反馈?请联系 [email protected]
| Entire leg swollen. +1. |
| calfSwelling | checkbox | 否 | Calf swelling ≥3 cm compared to the asymptomatic leg (measured 10 cm below the tibial tuberosity). +1. |
| pittingEdema | checkbox | 否 | Pitting edema confined to the symptomatic leg. +1. |
| collateralVeins | checkbox | 否 | Collateral (nonvaricose) superficial veins. +1. |
| previousDvt | checkbox | 否 | Previously objectively documented DVT. +1. |
| alternative | checkbox | 否 | An alternative diagnosis at least as likely as DVT. −2. |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}