Math & Numbers
Run a paired nonparametric Wilcoxon signed-rank test from paired samples or differences
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/wilcoxon-signed-rank-calculator' \
-H 'Content-Type: application/json' \
-d '{"inputMode":"paired-samples","beforeValues":"72, 75, 78, 74, 76, 73, 77","afterValues":"76, 79, 80, 77, 81, 76, 82","differenceValues":"4, 4, 2, 3, 5, 3, 5","alternative":"two-sided","alpha":0.05,"decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/wilcoxon-signed-rank-calculator| Name | Type | Required | Description |
|---|---|---|---|
| inputMode | select | No | — |
| beforeValues | textarea | No | — |
| afterValues | textarea | No | — |
| differenceValues | textarea | No | — |
| alternative | select | No | — |
| alpha |
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-wilcoxon-signed-rank-calculator": {
"name": "wilcoxon-signed-rank-calculator",
"description": "Run a paired nonparametric Wilcoxon signed-rank test from paired samples or differences",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=wilcoxon-signed-rank-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": "wilcoxon-signed-rank-calculator",
"arguments": {
"inputMode": "paired-samples",
"beforeValues": "72, 75, 78, 74, 76, 73, 77",
"afterValues": "76, 79, 80, 77, 81, 76, 82",
"differenceValues": "4, 4, 2, 3, 5, 3, 5",
"alternative": "two-sided",
"alpha": 0.05,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}