Math & Numbers
Solve cubic equations, classify the root pattern, and show Cardano-style intermediate values
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/cubic-equation-solver' \
-H 'Content-Type: application/json' \
-d '{"inputFormat":"equation","aOrEquation":"x^3 - 6x^2 + 11x - 6 = 0","b":-6,"c":11,"d":-6,"decimalPlaces":6,"showSteps":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/cubic-equation-solver| Name | Type | Required | Description |
|---|---|---|---|
| inputFormat | select | Yes | — |
| aOrEquation | text | Yes | — |
| b | number | No | — |
| c | number | No | — |
| d | number | No | — |
| decimalPlaces |
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-cubic-equation-solver": {
"name": "cubic-equation-solver",
"description": "Solve cubic equations, classify the root pattern, and show Cardano-style intermediate values",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=cubic-equation-solver",
"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": "cubic-equation-solver",
"arguments": {
"inputFormat": "equation",
"aOrEquation": "x^3 - 6x^2 + 11x - 6 = 0",
"b": -6,
"c": 11,
"d": -6,
"decimalPlaces": 6,
"showSteps": true
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| showSteps | checkbox | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}