Math & Numbers
Calculate the overall efficiency of a multi-stage transmission. η_total = η₁·η₂·…·ηₙ. Enter one stage efficiency per line (decimal, e.g. 0.98). Optionally add an input power to get the total loss and per-stage output power.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/power-transmission-efficiency' \
-H 'Content-Type: application/json' \
-d '{"stageEfficiencies":"0.98\n0.95\n0.97","inputPower":5000,"decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/power-transmission-efficiency| Name | Type | Required | Description |
|---|---|---|---|
| stageEfficiencies | textarea | Yes | One efficiency per line (decimal in (0,1], e.g. 0.98 for 98%). Comma/space separated also accepted. |
| inputPower | number | No | Optional. If provided, the total power loss and per-stage output power are computed. |
| 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-power-transmission-efficiency": {
"name": "power-transmission-efficiency",
"description": "Calculate the overall efficiency of a multi-stage transmission. η_total = η₁·η₂·…·ηₙ. Enter one stage efficiency per line (decimal, e.g. 0.98). Optionally add an input power to get the total loss and per-stage output power.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=power-transmission-efficiency",
"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": "power-transmission-efficiency",
"arguments": {
"stageEfficiencies": "0.98\n0.95\n0.97",
"inputPower": 5000,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]