Security
Measure the randomness of any data — Shannon entropy (bits/symbol), Min-Entropy (worst-case guess work), alphabet size, duplicate rate, and an average brute-force cracking time at a chosen hash rate. Rates data as Strong (≥128-bit min-entropy), Medium (64-127), or Weak (<64).
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/entropy-calculator' \
-H 'Content-Type: application/json' \
-d '{"data":"password123","mode":"character","guessRate":"1e10","customGuessRate":10000000000000}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/entropy-calculator| Name | Type | Required | Description |
|---|---|---|---|
| data | textarea | Yes | — |
| mode | select | No | — |
| guessRate | select | No | — |
| customGuessRate | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-entropy-calculator": {
"name": "entropy-calculator",
"description": "Measure the randomness of any data — Shannon entropy (bits/symbol), Min-Entropy (worst-case guess work), alphabet size, duplicate rate, and an average brute-force cracking time at a chosen hash rate. Rates data as Strong (≥128-bit min-entropy), Medium (64-127), or Weak (<64).",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=entropy-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": "entropy-calculator",
"arguments": {
"data": "password123",
"mode": "character",
"guessRate": "1e10",
"customGuessRate": 10000000000000
}
}
}Questions or issues? Contact [email protected]