Health
多次固定间隔给药的稳态浓度:平均稳态 Css,avg = F·Dose/(CL·τ);并提供一室 IV 推注下的蓄积因子 Rac=1/(1-e^(-kτ))、峰浓度 Cmax,ss、谷浓度 Cmin,ss(需另填 t½ 与 Vd)。约 4~5 个半衰期达稳态(94%~97%)。仅适用线性动力学;不适用于苯妥英等非线性药物。不构成医疗建议。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/steady-state-concentration' \
-H 'Content-Type: application/json' \
-d '{"dose":200,"bioavailability":0.9,"clearance":2.8,"interval":8,"halfLife":0,"vd":0,"decimalPlaces":4}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/steady-state-concentration| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| dose | number | 是 | Dose administered at each interval. Must be positive. |
| bioavailability | number | 是 | Fraction of dose reaching systemic circulation. IV=1, oral<1. Range (0, 1]. |
| clearance | number | 是 | Drug clearance in L/h. Must be positive. |
| interval | number | 是 | Time between consecutive doses in hours. Must be positive. |
| halfLife | number | 否 | Optional elimination half-life. Required for accumulation index and peak/trough. |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-steady-state-concentration": {
"name": "steady-state-concentration",
"description": "多次固定间隔给药的稳态浓度:平均稳态 Css,avg = F·Dose/(CL·τ);并提供一室 IV 推注下的蓄积因子 Rac=1/(1-e^(-kτ))、峰浓度 Cmax,ss、谷浓度 Cmin,ss(需另填 t½ 与 Vd)。约 4~5 个半衰期达稳态(94%~97%)。仅适用线性动力学;不适用于苯妥英等非线性药物。不构成医疗建议。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=steady-state-concentration",
"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": "steady-state-concentration",
"arguments": {
"dose": 200,
"bioavailability": 0.9,
"clearance": 2.8,
"interval": 8,
"halfLife": 0,
"vd": 0,
"decimalPlaces": 4
}
}
}有问题或反馈?请联系 [email protected]
| vd | number | 否 | Optional Vd. Required with t½ for one-compartment peak/trough estimation. |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}