Math & Numbers
Convert moment of force (torque) between newton-metre (N·m, SI base), dyne-centimetre (dyn·cm, CGS = 10⁻⁷ N·m), pound-foot (lbf·ft = 1.3558179483314004 N·m), and kilogram-force-metre (kgf·m = 9.80665 N·m). Each factor is the exact product of the matching force factor and length factor. Converts via N·m to the target unit and lists all four equivalents. Reference: wheel-nut tightening torque ≈ 100 N·m, passenger-car engine peak torque ≈ 250 N·m.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/moment-of-force-converter' \
-H 'Content-Type: application/json' \
-d '{"inputUnit":"N·m","value":100,"outputUnit":"lbf·ft","decimalPlaces":7}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/moment-of-force-converter| Name | Type | Required | Description |
|---|---|---|---|
| inputUnit | select | No | — |
| value | number | Yes | Moment of force in the selected Input unit. Can be negative (e.g. counterclockwise / loosening). |
| outputUnit | select | No | — |
| 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-moment-of-force-converter": {
"name": "moment-of-force-converter",
"description": "Convert moment of force (torque) between newton-metre (N·m, SI base), dyne-centimetre (dyn·cm, CGS = 10⁻⁷ N·m), pound-foot (lbf·ft = 1.3558179483314004 N·m), and kilogram-force-metre (kgf·m = 9.80665 N·m). Each factor is the exact product of the matching force factor and length factor. Converts via N·m to the target unit and lists all four equivalents. Reference: wheel-nut tightening torque ≈ 100 N·m, passenger-car engine peak torque ≈ 250 N·m.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=moment-of-force-converter",
"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": "moment-of-force-converter",
"arguments": {
"inputUnit": "N·m",
"value": 100,
"outputUnit": "lbf·ft",
"decimalPlaces": 7
}
}
}Questions or issues? Contact [email protected]