Math & Numbers
Calculate the Terzaghi ultimate bearing capacity of a shallow foundation: q_ult = c·Nc·sc + q·Nq·sq + 0.5·γ·B·Nγ·sγ. Computes Nc/Nq/Nγ and shape factors automatically; supports strip, square, and circular footings. Result in kPa.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/bearing-capacity-calculator' \
-H 'Content-Type: application/json' \
-d '{"shape":"strip","c":0,"phi":30,"gamma":18,"B":2,"Df":1,"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/bearing-capacity-calculator| Name | Type | Required | Description |
|---|---|---|---|
| shape | select | No | — |
| c | number | Yes | Soil cohesion (undrained or effective). Use 0 for cohesionless soil. |
| phi | number | Yes | 0 ≤ φ < 90. Use 0 for undrained clay (φ=0 analysis). |
| gamma | number | Yes | — |
| B | number | Yes | Foundation width (or diameter for circular). |
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-bearing-capacity-calculator": {
"name": "bearing-capacity-calculator",
"description": "Calculate the Terzaghi ultimate bearing capacity of a shallow foundation: q_ult = c·Nc·sc + q·Nq·sq + 0.5·γ·B·Nγ·sγ. Computes Nc/Nq/Nγ and shape factors automatically; supports strip, square, and circular footings. Result in kPa.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=bearing-capacity-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": "bearing-capacity-calculator",
"arguments": {
"shape": "strip",
"c": 0,
"phi": 30,
"gamma": 18,
"B": 2,
"Df": 1,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
| Df | number | Yes | Depth of foundation base below ground surface. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}