Math & Numbers
Compute cable voltage drop from current, length, conductor size (AWG/mm²) and material, for DC, single-phase and three-phase circuits
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/voltage-drop-calculator' \
-H 'Content-Type: application/json' \
-d '{"current":15,"lengthM":30,"material":"copper","sizeMode":"awg","awg":"12","areaMm2":2.5,"circuit":"dc1p","sourceVoltage":120}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/voltage-drop-calculator| Name | Type | Required | Description |
|---|---|---|---|
| current | number | Yes | — |
| lengthM | number | Yes | — |
| material | select | No | — |
| sizeMode | select | No | — |
| awg | select | No | — |
| areaMm2 |
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-voltage-drop-calculator": {
"name": "voltage-drop-calculator",
"description": "Compute cable voltage drop from current, length, conductor size (AWG/mm²) and material, for DC, single-phase and three-phase circuits",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=voltage-drop-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": "voltage-drop-calculator",
"arguments": {
"current": 15,
"lengthM": 30,
"material": "copper",
"sizeMode": "awg",
"awg": "12",
"areaMm2": 2.5,
"circuit": "dc1p",
"sourceVoltage": 120
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| circuit | select | No | — |
| sourceVoltage | number | Yes | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}