Text Processing
Advanced text decompression tool that can restore compressed text using RLE, LZ77, Huffman decoding, and more
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-data-decompressor' \
-H 'Content-Type: application/json' \
-d '{"compressedText":"Enter the compressed text to decompress...","algorithm":"auto","decompressionData":"Paste decompression data if required (e.g., Huffman tree data)...","inputEncoding":"raw","autoDetect":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/text-data-decompressor| Name | Type | Required | Description |
|---|---|---|---|
| compressedText | textarea | Yes | Enter the compressed text data that you want to decompress back to original form |
| algorithm | select | Yes | Choose the decompression algorithm or use auto-detection |
| decompressionData | textarea | No | Required for Huffman decompression. Paste the tree data generated during compression. |
| inputEncoding | select | Yes | Choose the encoding of your compressed input |
| autoDetect | checkbox |
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-text-data-decompressor": {
"name": "text-data-decompressor",
"description": "Advanced text decompression tool that can restore compressed text using RLE, LZ77, Huffman decoding, and more",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-data-decompressor",
"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": "text-data-decompressor",
"arguments": {
"compressedText": "Enter the compressed text to decompress...",
"algorithm": "auto",
"decompressionData": "Paste decompression data if required (e.g., Huffman tree data)...",
"inputEncoding": "raw",
"autoDetect": true
}
}
}Questions or issues? Contact [email protected]
| No |
| Automatically detect the compression algorithm when "Auto-Detect" is selected |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}