Science & Education
Run the three workhorse normality tests (Shapiro-Wilk AS R94, Anderson-Darling, Lilliefors) with a Q-Q plot and a Monte-Carlo power comparison.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/shapiro-wilk-anderson-darling-lilliefors-normality-tutor' \
-H 'Content-Type: application/json' \
-d '{"data":"0.0987, 0.0533, 0.0293, 0.0246, 0.0200, 0.0194, 0.0191, 0.0180, 0.0172, 0.0132, 0.0102, 0.0084, 0.0077, 0.0058, 0.0016, 0.0000, -0.0026, -0.0036, -0.0042, -0.0114, -0.0139, -0.0222, -0.0333, -0.0348, -0.0363, -0.0363, -0.0402, -0.0583, -0.1184, -0.1420","alpha":"0.05","showQqPlot":true,"powerAlternative":"exponential","showPowerCurve":true}'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/shapiro-wilk-anderson-darling-lilliefors-normality-tutor| Name | Type | Required | Description |
|---|---|---|---|
| data | textarea | Yes | — |
| alpha | select | Yes | — |
| showQqPlot | checkbox | No | — |
| powerAlternative | select | No | — |
| showPowerCurve | 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-shapiro-wilk-anderson-darling-lilliefors-normality-tutor": {
"name": "shapiro-wilk-anderson-darling-lilliefors-normality-tutor",
"description": "Run the three workhorse normality tests (Shapiro-Wilk AS R94, Anderson-Darling, Lilliefors) with a Q-Q plot and a Monte-Carlo power comparison.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=shapiro-wilk-anderson-darling-lilliefors-normality-tutor",
"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": "shapiro-wilk-anderson-darling-lilliefors-normality-tutor",
"arguments": {
"data": "0.0987, 0.0533, 0.0293, 0.0246, 0.0200, 0.0194, 0.0191, 0.0180, 0.0172, 0.0132, 0.0102, 0.0084, 0.0077, 0.0058, 0.0016, 0.0000, -0.0026, -0.0036, -0.0042, -0.0114, -0.0139, -0.0222, -0.0333, -0.0348, -0.0363, -0.0363, -0.0402, -0.0583, -0.1184, -0.1420",
"alpha": "0.05",
"showQqPlot": true,
"powerAlternative": "exponential",
"showPowerCurve": true
}
}
}HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]