Health
Calculate the gravity (manual) IV drip rate in drops per minute: gtt/min = Volume × Drop factor / Time. Drop factor selectable (macro 10/15/20 or micro 60 gtt/mL). Time may be hours+minutes or minutes; rounded to whole drops with drift warning. Vasoactive/cardiotonic drugs and pediatric infusions must ALWAYS use a pump. Derived from Philips 2007, Macklin 2011, MDCalc, and ISMP. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/iv-drip-rate-calculator' \
-H 'Content-Type: application/json' \
-d '{"dropFactor":"20","volume":1000,"hours":4,"minutes":0,"decimalPlaces":1}'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-drip-rate-calculator| Name | Type | Required | Description |
|---|---|---|---|
| dropFactor | select | Yes | — |
| volume | number | Yes | Total volume to infuse (mL). |
| hours | number | No | Infusion time, hours component. May be combined with minutes. Either hours or minutes (or both) must be > 0. |
| minutes | number | No | Infusion time, minutes component (0–59). Combined with hours if given. |
| decimalPlaces | number | No |
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-drip-rate-calculator": {
"name": "iv-drip-rate-calculator",
"description": "Calculate the gravity (manual) IV drip rate in drops per minute: gtt/min = Volume × Drop factor / Time. Drop factor selectable (macro 10/15/20 or micro 60 gtt/mL). Time may be hours+minutes or minutes; rounded to whole drops with drift warning. Vasoactive/cardiotonic drugs and pediatric infusions must ALWAYS use a pump. Derived from Philips 2007, Macklin 2011, MDCalc, and ISMP. Not medical advice.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=iv-drip-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-drip-rate-calculator",
"arguments": {
"dropFactor": "20",
"volume": 1000,
"hours": 4,
"minutes": 0,
"decimalPlaces": 1
}
}
}| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]