Health
Calculate the 24-hour crystalloid for moderate-to-severe burns using Parkland (4 mL/kg/%TBSA LR) or Brooke (2 mL/kg/%TBSA LR), accounting for elapsed time since burn. Titrate to urine output. Derived from Baxter 1974, ABA 2008, MDCalc, and ISBI 2016. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/fluid-resuscitation-burn' \
-H 'Content-Type: application/json' \
-d '{"formula":"parkland","weight":70,"tbsa":40,"hoursSinceBurn":2,"decimalPlaces":0}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/fluid-resuscitation-burn| Name | Type | Required | Description |
|---|---|---|---|
| formula | select | Yes | — |
| weight | number | Yes | Patient body weight (kg). |
| tbsa | number | Yes | Total Body Surface Area burned (%), 2nd and 3rd degree only. Use Rule of Nines (adult), Lund-Browder (children), or palm method. |
| hoursSinceBurn | number | Yes | Hours elapsed since the TIME OF BURN (not admission). Used to compute the remaining first-8-h volume. |
| decimalPlaces | number |
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-fluid-resuscitation-burn": {
"name": "fluid-resuscitation-burn",
"description": "Calculate the 24-hour crystalloid for moderate-to-severe burns using Parkland (4 mL/kg/%TBSA LR) or Brooke (2 mL/kg/%TBSA LR), accounting for elapsed time since burn. Titrate to urine output. Derived from Baxter 1974, ABA 2008, MDCalc, and ISBI 2016. Not medical advice.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=fluid-resuscitation-burn",
"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": "fluid-resuscitation-burn",
"arguments": {
"formula": "parkland",
"weight": 70,
"tbsa": 40,
"hoursSinceBurn": 2,
"decimalPlaces": 0
}
}
}Questions or issues? Contact [email protected]
| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}