Math & Numbers
Calculate the ratio, driven speed and belt linear speed of a belt drive. i = d₂/d₁ = n₁/n₂, belt speed v = π·d·n/60. Supports mm/cm/m/inch diameter units.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/belt-pulley-speed-ratio' \
-H 'Content-Type: application/json' \
-d '{"d1":100,"d2":300,"n1":1800,"diameterUnit":"mm","linearSpeedUnit":"m/s","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/belt-pulley-speed-ratio| Name | Type | Required | Description |
|---|---|---|---|
| d1 | number | Yes | — |
| d2 | number | Yes | — |
| n1 | number | No | Optional. If provided, the driven speed and belt linear speed are computed. |
| diameterUnit | select | No | — |
| linearSpeedUnit | 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-belt-pulley-speed-ratio": {
"name": "belt-pulley-speed-ratio",
"description": "Calculate the ratio, driven speed and belt linear speed of a belt drive. i = d₂/d₁ = n₁/n₂, belt speed v = π·d·n/60. Supports mm/cm/m/inch diameter units.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=belt-pulley-speed-ratio",
"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": "belt-pulley-speed-ratio",
"arguments": {
"d1": 100,
"d2": 300,
"n1": 1800,
"diameterUnit": "mm",
"linearSpeedUnit": "m/s",
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
| decimalPlaces |
| number |
| No |
| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}