Text Processing
A unified text analytics dashboard: word/char/sentence counts, type–token ratio (lexical diversity), lexical density, syllable estimate, and separate reading (238 wpm) and speaking (150 wpm) time estimates — plus top content vs function words.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/enhanced-text-statistics-dashboard' \
-H 'Content-Type: application/json' \
-d '{"text":"The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs. How vexingly quick daft zebras jump! The five boxing wizards jump quickly. Sphinx of black quartz, judge my vow."}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/enhanced-text-statistics-dashboard| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | — |
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-enhanced-text-statistics-dashboard": {
"name": "enhanced-text-statistics-dashboard",
"description": "A unified text analytics dashboard: word/char/sentence counts, type–token ratio (lexical diversity), lexical density, syllable estimate, and separate reading (238 wpm) and speaking (150 wpm) time estimates — plus top content vs function words.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=enhanced-text-statistics-dashboard",
"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": "enhanced-text-statistics-dashboard",
"arguments": {
"text": "The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs. How vexingly quick daft zebras jump! The five boxing wizards jump quickly. Sphinx of black quartz, judge my vow."
}
}
}Questions or issues? Contact [email protected]