Health
Calculate the infusion pump rate in mL/hr = Total volume / Infusion time. Time may be hours+minutes or minutes; also reports mL/min and the decimal duration. Verify pump units match the order, confirm line patency, and sum channels for restricted patients. Derived from Macklin 2011, NICE CK174 2017, Phillips 2007, and ISMP. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/infusion-rate-ml-hr' \
-H 'Content-Type: application/json' \
-d '{"volume":1000,"hours":8,"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/infusion-rate-ml-hr| Name | Type | Required | Description |
|---|---|---|---|
| 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 | — |
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-infusion-rate-ml-hr": {
"name": "infusion-rate-ml-hr",
"description": "Calculate the infusion pump rate in mL/hr = Total volume / Infusion time. Time may be hours+minutes or minutes; also reports mL/min and the decimal duration. Verify pump units match the order, confirm line patency, and sum channels for restricted patients. Derived from Macklin 2011, NICE CK174 2017, Phillips 2007, and ISMP. Not medical advice.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=infusion-rate-ml-hr",
"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": "infusion-rate-ml-hr",
"arguments": {
"volume": 1000,
"hours": 8,
"minutes": 0,
"decimalPlaces": 1
}
}
}Questions or issues? Contact [email protected]