Math & Numbers
Newton-Raphson iteration for f(x) = 0 with analytic or numeric derivative, full iteration table, and explicit convergence/divergence reporting.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/newton-raphson-root-finder' \
-H 'Content-Type: application/json' \
-d '{"fxExpr":"x^2 - 2","dfxExpr":"","x0":1,"tolerance":1e-10,"maxIter":50,"decimalPlaces":10}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/newton-raphson-root-finder| Name | Type | Required | Description |
|---|---|---|---|
| fxExpr | text | Yes | The function whose root is sought, in the variable x. Supports + - * / ^, parentheses, and functions like exp, sin, cos, sqrt, ln. |
| dfxExpr | text | No | Optional analytic derivative; when blank a central difference (h ≈ 1e-7) is used. |
| x0 | number | No | Starting point of the iteration. |
| tolerance | number | No | Convergence threshold on |f(x)| and on the step size. |
| maxIter | number |
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-newton-raphson-root-finder": {
"name": "newton-raphson-root-finder",
"description": "Newton-Raphson iteration for f(x) = 0 with analytic or numeric derivative, full iteration table, and explicit convergence/divergence reporting.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=newton-raphson-root-finder",
"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": "newton-raphson-root-finder",
"arguments": {
"fxExpr": "x^2 - 2",
"dfxExpr": "",
"x0": 1,
"tolerance": 1e-10,
"maxIter": 50,
"decimalPlaces": 10
}
}
}Questions or issues? Contact [email protected]
| Hard cap on the number of iterations (2–200). |
| decimalPlaces | number | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}