Data Analysis
Analyze data kurtosis to measure the "tailedness" of distribution and detect heavy-tailed or light-tailed patterns
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/kurtosis-analyzer' \
-H 'Content-Type: application/json' \
-d '{"dataInput":"Enter your data values separated by commas or new lines...\n\nExamples:\n- Normal distribution: 50, 51, 49, 52, 48, 50, 51, 49, 50, 52\n- Heavy-tailed: 45, 52, 48, 60, 35, 50, 51, 49, 50, 80\n- Light-tailed: 49, 51, 50, 49, 51, 50, 49, 51, 50, 49","dataFormat":"single","confidenceLevel":"0.95","detailedAnalysis":true,"riskAssessment":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/kurtosis-analyzer| Name | Type | Required | Description |
|---|---|---|---|
| dataInput | textarea | Yes | — |
| dataFormat | select | Yes | — |
| confidenceLevel | select | Yes | — |
| detailedAnalysis | checkbox | No | Include detailed comparative analysis and confidence intervals |
| riskAssessment | checkbox | No | Assess volatility and outlier risk based on kurtosis |
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-kurtosis-analyzer": {
"name": "kurtosis-analyzer",
"description": "Analyze data kurtosis to measure the \"tailedness\" of distribution and detect heavy-tailed or light-tailed patterns",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=kurtosis-analyzer",
"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": "kurtosis-analyzer",
"arguments": {
"dataInput": "Enter your data values separated by commas or new lines...\n\nExamples:\n- Normal distribution: 50, 51, 49, 52, 48, 50, 51, 49, 50, 52\n- Heavy-tailed: 45, 52, 48, 60, 35, 50, 51, 49, 50, 80\n- Light-tailed: 49, 51, 50, 49, 51, 50, 49, 51, 50, 49",
"dataFormat": "single",
"confidenceLevel": "0.95",
"detailedAnalysis": true,
"riskAssessment": true
}
}
}Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]