Categories

Text Data Decompressor

Advanced text decompression tool that can restore compressed text using RLE, LZ77, Huffman decoding, and more

Enter the compressed text data that you want to decompress back to original form

Choose the decompression algorithm or use auto-detection

Required for Huffman decompression. Paste the tree data generated during compression.

Choose the encoding of your compressed input

Automatically detect the compression algorithm when "Auto-Detect" is selected

API Documentation

Request Endpoint

POST /en/api/tools/text-data-decompressor

Request Parameters

Parameter 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 No Automatically detect the compression algorithm when "Auto-Detect" is selected

Response Format

{
  "result": "Processed text content",
  "error": "Error message (optional)",
  "message": "Notification message (optional)",
  "metadata": {
    "key": "value"
  }
}
Text: Text

AI MCP Documentation

Add this tool to your MCP server 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://elysiatools.com/mcp/sse?toolId=text-data-decompressor",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]