Math & Numbers
Convert between bolt tightening torque and axial clamp force. T = K·F·d, where K is the nut factor (~0.20 for dry steel). Solve torque from force, or force from torque.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/bolt-torque-clamp-force' \
-H 'Content-Type: application/json' \
-d '{"mode":"torque","K":0.2,"F":50,"d":10,"T":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/bolt-torque-clamp-force| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| K | number | Yes | Dimensionless nut factor. Typical: 0.20 dry steel, 0.15 lubricated, 0.13 with moly. |
| F | number | No | Axial clamp force in kN. Required in Torque mode. |
| d | number | Yes | — |
| T | number | No | Applied wrench torque in N·m. Required in Force mode. |
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-bolt-torque-clamp-force": {
"name": "bolt-torque-clamp-force",
"description": "Convert between bolt tightening torque and axial clamp force. T = K·F·d, where K is the nut factor (~0.20 for dry steel). Solve torque from force, or force from torque.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=bolt-torque-clamp-force",
"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": "bolt-torque-clamp-force",
"arguments": {
"mode": "torque",
"K": 0.2,
"F": 50,
"d": 10,
"T": 0,
"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)"
}