Math & Numbers
Estimate copper cable current-carrying capacity per the simplified IEC 60364-5-52 reference method. Combines cross-section, insulation (PVC 70°C / XLPE 90°C), installation method, and ambient temperature to derive the corrected allowable ampacity (A).
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/cable-ampacity-calculator' \
-H 'Content-Type: application/json' \
-d '{"crossSection":"2.5","insulation":"PVC","installMethod":"E1","ambientTemp":30,"decimalPlaces":2}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/cable-ampacity-calculator| Name | Type | Required | Description |
|---|---|---|---|
| crossSection | select | No | — |
| insulation | select | No | — |
| installMethod | select | No | — |
| ambientTemp | number | No | 10–50 °C. The reference base current is rated at 30 °C. |
| 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-cable-ampacity-calculator": {
"name": "cable-ampacity-calculator",
"description": "Estimate copper cable current-carrying capacity per the simplified IEC 60364-5-52 reference method. Combines cross-section, insulation (PVC 70°C / XLPE 90°C), installation method, and ambient temperature to derive the corrected allowable ampacity (A).",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=cable-ampacity-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": "cable-ampacity-calculator",
"arguments": {
"crossSection": "2.5",
"insulation": "PVC",
"installMethod": "E1",
"ambientTemp": 30,
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}