Math & Numbers
Calculate the maximum shear stress τ_max = V·Q/(I·b) at the neutral axis of a beam section. Supports rectangle (1.5V/A), solid circle (4V/3A), hollow tube, and I-beam (exact V·Q_web/(I·tw)). Also returns the average shear stress V/A for comparison.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/shear-stress-calculator' \
-H 'Content-Type: application/json' \
-d '{"shape":"rectangle","V":20000,"b":50,"h":100,"D":0,"Do":0,"Di":0,"B":0,"H":0,"tw":0,"tf":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/shear-stress-calculator| Name | Type | Required | Description |
|---|---|---|---|
| shape | select | No | — |
| V | number | Yes | — |
| b | number | No | Section width (horizontal). Required for Rectangle. |
| h | number | No | Section height (vertical). Required for Rectangle. |
| D | number | No | Required for Solid Circle. |
| Do |
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-shear-stress-calculator": {
"name": "shear-stress-calculator",
"description": "Calculate the maximum shear stress τ_max = V·Q/(I·b) at the neutral axis of a beam section. Supports rectangle (1.5V/A), solid circle (4V/3A), hollow tube, and I-beam (exact V·Q_web/(I·tw)). Also returns the average shear stress V/A for comparison.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=shear-stress-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": "shear-stress-calculator",
"arguments": {
"shape": "rectangle",
"V": 20000,
"b": 50,
"h": 100,
"D": 0,
"Do": 0,
"Di": 0,
"B": 0,
"H": 0,
"tw": 0,
"tf": 0,
"decimalPlaces": 4
}
}
}| number |
| No |
| Required for Hollow Circle. |
| Di | number | No | Required for Hollow Circle. Must be less than Do. |
| B | number | No | Required for I-Beam. |
| H | number | No | Required for I-Beam. |
| tw | number | No | Required for I-Beam. |
| tf | number | No | Required for I-Beam. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]