Health
表观分布容积 Vd:一室 IV 推注下 Vd = 剂量/C₀;或线性动力学下由 CL 与 t½ 推导 Vd = CL·t½/0.693。Vd 是理论体积,不代表真实解剖容积(高组织结合药物如地高辛可达 7 L/kg)。可按体重换算 L/kg。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/volume-of-distribution' \
-H 'Content-Type: application/json' \
-d '{"mode":"dose-c0","dose":500,"c0":10,"clearance":0,"halfLife":0,"weight":70,"decimalPlaces":4}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/volume-of-distribution| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| mode | select | 否 | — |
| dose | number | 否 | IV bolus dose. Required in Dose/C0 mode. |
| c0 | number | 否 | Concentration at t=0 (extrapolated). Required in Dose/C0 mode. |
| clearance | number | 否 | Clearance. Required in CL & t½ mode. |
| halfLife | number | 否 | Elimination half-life. Required in CL & t½ mode. |
| weight |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-volume-of-distribution": {
"name": "volume-of-distribution",
"description": "表观分布容积 Vd:一室 IV 推注下 Vd = 剂量/C₀;或线性动力学下由 CL 与 t½ 推导 Vd = CL·t½/0.693。Vd 是理论体积,不代表真实解剖容积(高组织结合药物如地高辛可达 7 L/kg)。可按体重换算 L/kg。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=volume-of-distribution",
"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": "volume-of-distribution",
"arguments": {
"mode": "dose-c0",
"dose": 500,
"c0": 10,
"clearance": 0,
"halfLife": 0,
"weight": 70,
"decimalPlaces": 4
}
}
}有问题或反馈?请联系 [email protected]
| number |
| 否 |
| Optional body weight to report Vd in L/kg. |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}