Health
Compute RPP = HR × SBP, a non-invasive index of myocardial O₂ demand. Normal resting 6,000–10,000; >12,000 angina threshold. Derived from Gobel 1978, StatPearls, LITFL, Braunwald, Fletcher 2013. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/rate-pressure-product' \
-H 'Content-Type: application/json' \
-d '{"sbp":120,"hr":72,"decimalPlaces":2}'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/rate-pressure-product| Name | Type | Required | Description |
|---|---|---|---|
| sbp | number | Yes | Systolic blood pressure (mmHg). |
| hr | number | Yes | Heart rate in beats per minute. |
| 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-rate-pressure-product": {
"name": "rate-pressure-product",
"description": "Compute RPP = HR × SBP, a non-invasive index of myocardial O₂ demand. Normal resting 6,000–10,000; >12,000 angina threshold. Derived from Gobel 1978, StatPearls, LITFL, Braunwald, Fletcher 2013. Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=rate-pressure-product",
"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": "rate-pressure-product",
"arguments": {
"sbp": 120,
"hr": 72,
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]