Health
Calculate the continuous IV infusion rate that maintains a target steady-state plasma concentration: R₀ = Css · CL, where Css is the target concentration and CL is clearance. At steady state, the infusion rate equals the elimination rate. If the IV solution concentration (mg/mL) is provided, the tool additionally derives the infusion-pump delivery rate in mL/h, which is what the pump is actually set to in clinical practice. This is an IV-only tool — bioavailability F is not applicable. Reaching steady state requires approximately 4–5 half-lives. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/iv-infusion-rate-calculator' \
-H 'Content-Type: application/json' \
-d '{"css":10,"clearance":2.8,"concentration":2,"decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/iv-infusion-rate-calculator| Name | Type | Required | Description |
|---|---|---|---|
| css | number | Yes | Target steady-state plasma concentration. Must be positive. |
| clearance | number | Yes | Drug clearance in L/h. Must be positive. |
| concentration | number | No | Optional concentration of the IV solution. When provided, the pump rate in mL/h is derived. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-iv-infusion-rate-calculator": {
"name": "iv-infusion-rate-calculator",
"description": "Calculate the continuous IV infusion rate that maintains a target steady-state plasma concentration: R₀ = Css · CL, where Css is the target concentration and CL is clearance. At steady state, the infusion rate equals the elimination rate. If the IV solution concentration (mg/mL) is provided, the tool additionally derives the infusion-pump delivery rate in mL/h, which is what the pump is actually set to in clinical practice. This is an IV-only tool — bioavailability F is not applicable. Reaching steady state requires approximately 4–5 half-lives. Not medical advice.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=iv-infusion-rate-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "iv-infusion-rate-calculator",
"arguments": {
"css": 10,
"clearance": 2.8,
"concentration": 2,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]