Math & Numbers
Calculate the stiffness (spring rate) of a cylindrical helical compression/extension spring. k = G·d⁴ / (8·D³·n) in N/mm. Includes shear-modulus presets for common spring materials.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/spring-rate-calculator' \
-H 'Content-Type: application/json' \
-d '{"material":"music_wire","G":79000,"wireDiameter":2,"meanDiameter":16,"activeCoils":8,"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/spring-rate-calculator| Name | Type | Required | Description |
|---|---|---|---|
| material | select | No | — |
| G | number | Yes | Shear modulus of the spring material. Auto-filled by the material preset; override freely when set to Custom. |
| wireDiameter | number | Yes | — |
| meanDiameter | number | Yes | — |
| activeCoils | number | Yes | — |
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-spring-rate-calculator": {
"name": "spring-rate-calculator",
"description": "Calculate the stiffness (spring rate) of a cylindrical helical compression/extension spring. k = G·d⁴ / (8·D³·n) in N/mm. Includes shear-modulus presets for common spring materials.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spring-rate-calculator",
"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": "spring-rate-calculator",
"arguments": {
"material": "music_wire",
"G": 79000,
"wireDiameter": 2,
"meanDiameter": 16,
"activeCoils": 8,
"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)"
}