Health
Estimate expected adult vital capacity with the Baldwin equations ((27.63 − 0.112×age)×height for males, (21.78 − 0.101×age)×height for females) and optionally grade a measured VC as % predicted. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/vital-capacity-estimator' \
-H 'Content-Type: application/json' \
-d '{"sex":"male","heightCm":180,"ageYears":25,"measuredVc":0,"measuredUnit":"L","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/vital-capacity-estimator| Name | Type | Required | Description |
|---|---|---|---|
| sex | select | Yes | Sex for the Baldwin prediction equation. |
| heightCm | number | Yes | Height in centimeters (100–250). |
| ageYears | number | Yes | Age in years (15–100). |
| measuredVc | number | No | Optional measured vital capacity in the selected unit (0.5–9 L or 500–9000 mL); enables % predicted and severity grading. |
| measuredUnit | select | No |
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-vital-capacity-estimator": {
"name": "vital-capacity-estimator",
"description": "Estimate expected adult vital capacity with the Baldwin equations ((27.63 − 0.112×age)×height for males, (21.78 − 0.101×age)×height for females) and optionally grade a measured VC as % predicted. Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=vital-capacity-estimator",
"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": "vital-capacity-estimator",
"arguments": {
"sex": "male",
"heightCm": 180,
"ageYears": 25,
"measuredVc": 0,
"measuredUnit": "L",
"decimalPlaces": 1
}
}
}Questions or issues? Contact [email protected]
| Unit of the measured vital capacity. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}