Health
Compute SVR = 80 × (MAP − CVP) / CO (dyn·s/cm⁵). Normal 800–1440; high in cardiogenic shock and hypertension; low in distributive shock and vasodilators. Derived from Grossman 1991, StatPearls, LITFL, Vincent NEJM 2013, Braunwald. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/systemic-vascular-resistance' \
-H 'Content-Type: application/json' \
-d '{"map":93,"cvp":8,"co":5,"decimalPlaces":0}'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/systemic-vascular-resistance| Name | Type | Required | Description |
|---|---|---|---|
| map | number | Yes | Mean arterial pressure (mmHg). If unknown, MAP = DBP + (SBP − DBP)/3. |
| cvp | number | Yes | Central venous pressure (mmHg) from a central line; approximates right atrial pressure. Typical 2–8 mmHg. |
| co | number | Yes | Cardiac output in L/min (from thermodilution, Fick, or echo). |
| 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-systemic-vascular-resistance": {
"name": "systemic-vascular-resistance",
"description": "Compute SVR = 80 × (MAP − CVP) / CO (dyn·s/cm⁵). Normal 800–1440; high in cardiogenic shock and hypertension; low in distributive shock and vasodilators. Derived from Grossman 1991, StatPearls, LITFL, Vincent NEJM 2013, Braunwald. Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=systemic-vascular-resistance",
"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": "systemic-vascular-resistance",
"arguments": {
"map": 93,
"cvp": 8,
"co": 5,
"decimalPlaces": 0
}
}
}Questions or issues? Contact [email protected]