Math & Numbers
Calculate the gear module m. m = d/z = p/π. Solve the module from the pitch diameter d and tooth count z, or from the circular pitch p. Also returns the pitch diameter, circular pitch and addendum.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/gear-module-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"fromDiameter","pitchDiameter":100,"teeth":20,"circularPitch":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/gear-module-calculator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| pitchDiameter | number | No | Used in 'Module from d and z' mode. |
| teeth | number | No | Used in 'Module from d and z' mode. |
| circularPitch | number | No | Used in 'Module from pitch p' mode. |
| 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-gear-module-calculator": {
"name": "gear-module-calculator",
"description": "Calculate the gear module m. m = d/z = p/π. Solve the module from the pitch diameter d and tooth count z, or from the circular pitch p. Also returns the pitch diameter, circular pitch and addendum.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=gear-module-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": "gear-module-calculator",
"arguments": {
"mode": "fromDiameter",
"pitchDiameter": 100,
"teeth": 20,
"circularPitch": 0,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}