Data Analysis
Analyze and count numbers within specified ranges or intervals
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/number-range-statistics' \
-H 'Content-Type: application/json' \
-d '{"data":"Enter numbers (comma, space, or newline separated)...","rangeType":"equal-width","binCount":10,"binWidth":10,"startValue":"Minimum value for ranges (optional)","endValue":"Maximum value for ranges (optional)","customRanges":"Enter custom ranges (one per line): min-max or label:min-max","dataFormat":"mixed","includeStatistics":true,"chartData":true,"outputFormat":"json","sortResults":"none"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/number-range-statistics| Name | Type | Required | Description |
|---|---|---|---|
| data | textarea | Yes | — |
| rangeType | select | No | — |
| binCount | number | No | — |
| binWidth | number | No | — |
| startValue | text | No | — |
| endValue |
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-number-range-statistics": {
"name": "number-range-statistics",
"description": "Analyze and count numbers within specified ranges or intervals",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=number-range-statistics",
"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": "number-range-statistics",
"arguments": {
"data": "Enter numbers (comma, space, or newline separated)...",
"rangeType": "equal-width",
"binCount": 10,
"binWidth": 10,
"startValue": "Minimum value for ranges (optional)",
"endValue": "Maximum value for ranges (optional)",
"customRanges": "Enter custom ranges (one per line): min-max or label:min-max",
"dataFormat": "mixed",
"includeStatistics": true,
"chartData": true,
"outputFormat": "json",
"sortResults": "none"
}
}
}| text |
| No |
| — |
| customRanges | textarea | No | — |
| dataFormat | select | No | — |
| includeStatistics | checkbox | No | — |
| chartData | checkbox | No | — |
| outputFormat | select | No | — |
| sortResults | select | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]