Math & Numbers
Calculate the basic rating life of a rolling bearing: L10 = (C/P)^p, with p = 3 for ball bearings and p = 10/3 for roller bearings. When a speed is provided, converts to L10h in operating hours.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/bearing-life-l10' \
-H 'Content-Type: application/json' \
-d '{"bearingType":"ball","dynamicLoadRating":22000,"equivalentLoad":4400,"speed":0,"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/bearing-life-l10| Name | Type | Required | Description |
|---|---|---|---|
| bearingType | select | No | — |
| dynamicLoadRating | number | Yes | — |
| equivalentLoad | number | Yes | — |
| speed | number | No | Optional. If provided, the life in hours L10h = L10 × 10⁶ / (60 · n). |
| decimalPlaces | number | 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-bearing-life-l10": {
"name": "bearing-life-l10",
"description": "Calculate the basic rating life of a rolling bearing: L10 = (C/P)^p, with p = 3 for ball bearings and p = 10/3 for roller bearings. When a speed is provided, converts to L10h in operating hours.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=bearing-life-l10",
"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": "bearing-life-l10",
"arguments": {
"bearingType": "ball",
"dynamicLoadRating": 22000,
"equivalentLoad": 4400,
"speed": 0,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}