Health
Calculate PP = SBP − DBP and MAP = DBP + PP/3. Normal ~30–40 mmHg; wide PP → high SV or stiff arteries; narrow PP → low SV. Pulsus paradoxus flags tamponade/asthma/PE. Derived from McDonald's, Franklin 1999, Blacher 1999, StatPearls, LITFL. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/pulse-pressure-calculator' \
-H 'Content-Type: application/json' \
-d '{"sbp":120,"dbp":80,"decimalPlaces":1}'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/pulse-pressure-calculator| Name | Type | Required | Description |
|---|---|---|---|
| sbp | number | Yes | Systolic blood pressure (mmHg). |
| dbp | number | Yes | Diastolic blood pressure (mmHg). |
| 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-pulse-pressure-calculator": {
"name": "pulse-pressure-calculator",
"description": "Calculate PP = SBP − DBP and MAP = DBP + PP/3. Normal ~30–40 mmHg; wide PP → high SV or stiff arteries; narrow PP → low SV. Pulsus paradoxus flags tamponade/asthma/PE. Derived from McDonald's, Franklin 1999, Blacher 1999, StatPearls, LITFL. Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=pulse-pressure-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": "pulse-pressure-calculator",
"arguments": {
"sbp": 120,
"dbp": 80,
"decimalPlaces": 1
}
}
}Questions or issues? Contact [email protected]