Health
Overlay one-compartment IV bolus, intermittent short-infusion and continuous-infusion concentration curves at the same daily dose: accumulation ratio, steady-state Cmax/Cmin, AUC per interval, time to steady state, peak:trough fluctuation and loading doses.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/pharmacokinetic-bolus-vs-infusion-overlap-tutor' \
-H 'Content-Type: application/json' \
-d '{"drugPreset":"vancomycin","vdLiters":49,"clLitersPerHour":4.2,"doseMg":1000,"tauHours":12,"infusionHours":1,"simHours":96}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/pharmacokinetic-bolus-vs-infusion-overlap-tutor| Name | Type | Required | Description |
|---|---|---|---|
| drugPreset | select | No | — |
| vdLiters | number | No | — |
| clLitersPerHour | number | No | — |
| doseMg | number | No | — |
| tauHours | number | No | — |
| infusionHours |
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-pharmacokinetic-bolus-vs-infusion-overlap-tutor": {
"name": "pharmacokinetic-bolus-vs-infusion-overlap-tutor",
"description": "Overlay one-compartment IV bolus, intermittent short-infusion and continuous-infusion concentration curves at the same daily dose: accumulation ratio, steady-state Cmax/Cmin, AUC per interval, time to steady state, peak:trough fluctuation and loading doses.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=pharmacokinetic-bolus-vs-infusion-overlap-tutor",
"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": "pharmacokinetic-bolus-vs-infusion-overlap-tutor",
"arguments": {
"drugPreset": "vancomycin",
"vdLiters": 49,
"clLitersPerHour": 4.2,
"doseMg": 1000,
"tauHours": 12,
"infusionHours": 1,
"simHours": 96
}
}
}| number |
| No |
| — |
| simHours | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]