Math & Numbers
Compute complex admittance Y = 1/Z = G + jB for series or parallel RLC circuits: G = R/|Z|², B = −X/|Z|². Returns conductance, susceptance, magnitude and phase angle. Supports any subset of R/L/C.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/admittance-calculator' \
-H 'Content-Type: application/json' \
-d '{"topology":"series","R":100,"L":0.1,"C":0.00001,"frequency":50,"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/admittance-calculator| Name | Type | Required | Description |
|---|---|---|---|
| topology | select | No | — |
| R | number | No | Optional. At least one of R/L/C must be provided. |
| L | number | No | Optional. At least one of R/L/C must be provided. |
| C | number | No | Optional. At least one of R/L/C must be provided. |
| frequency | number | Yes | — |
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-admittance-calculator": {
"name": "admittance-calculator",
"description": "Compute complex admittance Y = 1/Z = G + jB for series or parallel RLC circuits: G = R/|Z|², B = −X/|Z|². Returns conductance, susceptance, magnitude and phase angle. Supports any subset of R/L/C.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=admittance-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": "admittance-calculator",
"arguments": {
"topology": "series",
"R": 100,
"L": 0.1,
"C": 0.00001,
"frequency": 50,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}