Math & Numbers
Calculate the digital root of numbers. The digital root is the recursive sum of digits until a single digit is obtained.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/digital-root-calculator' \
-H 'Content-Type: application/json' \
-d '{"numberInput":"Enter numbers to calculate digital roots, one per line:\n12345\n987654321\n42\n0\n-999","method":"iterative","showSteps":false,"showProperties":false,"addLineNumbers":false,"showSourceData":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/digital-root-calculator| Name | Type | Required | Description |
|---|---|---|---|
| numberInput | textarea | Yes | — |
| method | select | Yes | Choose the method for calculating digital roots |
| showSteps | checkbox | No | Display the step-by-step calculation process |
| showProperties | checkbox | No | Display mathematical properties of the digital root |
| addLineNumbers | checkbox | 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-digital-root-calculator": {
"name": "digital-root-calculator",
"description": "Calculate the digital root of numbers. The digital root is the recursive sum of digits until a single digit is obtained.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=digital-root-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": "digital-root-calculator",
"arguments": {
"numberInput": "Enter numbers to calculate digital roots, one per line:\n12345\n987654321\n42\n0\n-999",
"method": "iterative",
"showSteps": false,
"showProperties": false,
"addLineNumbers": false,
"showSourceData": false
}
}
}Questions or issues? Contact [email protected]
| Number each calculation result |
| showSourceData | checkbox | No | Display original numbers in results |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}