zrw-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@zrw-mcpcompress the array [0,0,0,1,2,3]"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Zero Range Wave Compression (ZRW) v5
Pure-JavaScript integer compressor that beats gzip and brotli on zeros, ramps, and walks.
Zero Range Wave is a specialized lossless codec for integer sequences. It is designed for sensor data, counters, scores, time-series deltas, and any stream that contains long runs, smooth ramps, or small random walks. On those patterns it routinely produces dramatically smaller output than general-purpose compressors.
Input | ZRW packed | vs brotli | vs gzip | Win |
zeros × 1 000 | 8 B | 13 B | 39 B | clear win |
ramp × 1 000 | 8 B | 1 132 B | 1 436 B | ~141× |
walk 10k (step 1) | 128 B | — | ~5 223 B | ~40× |
walk 10k (step 5) | 420 B | — | ~11 231 B | ~26× |
Full encode/decode round-trip. Library + HTTP API + MCP server.
Install
npm i zero-range-wave-compressionnpm package · Node ≥ 18 · ESM only.
Git install (optional): npm i github:ceedot-rock/zero-range-wave-compression
Related MCP server: mcp-compress
Quick start
import { compress, decompress, setLicenseKey } from "zero-range-wave-compression";
// Free Gate or paid key
setLicenseKey(process.env.ZRW_LICENSE); // ZRW-FREE-… / ZRW-START-… / ZRW-PRO-… / ZRW-L33T-…
const packed = compress([0, 0, 0, 1, 2, 3, 4, 5]); // Uint8Array
const back = decompress(packed); // exact round-tripWhy it wins on these patterns
Single-op prefix-free codes for the common cases (repeat, ±1, second difference, Rice, fallback)
Run-length escape only when a run is long enough (threshold = 4) so short walks stay fast
Fibonacci coding for small integers, Elias ω escape for large values
No dictionary warmup cost — excellent on short and medium sequences
Pricing (one-time license)
Tier | Price | Ops / month | Max ints / call | Livestream |
Free Gate (25 seats) | $0 | 100 k | 10 k | No |
Starting Gate | $79 | 5 M | 100 k | No |
Pro Starter | $249 | 50 M | 1 M | Yes |
l33t Unlimited | $699 | Unlimited | Unlimited | Yes |
Details: PRICING.md · Free key process: FREE_KEYS.md
Surfaces
Surface | How |
Library |
|
HTTP API |
|
MCP |
|
Same license key works for all three.
Related packages (SlidPhiLabs)
Package | Role |
General-purpose pure-JS compressor (Fib / Rice / ω / LZ77) | |
Adaptive Fibonacci + Blackjack V2 | |
Omni-Dormant integer codecs | |
Time-series DB using this family | |
Exact multi-target code playground |
Site: slidphilabs.vercel.app
License
Commercial license (see PRICING.md). Free Gate limited to 25 evaluation seats.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityCmaintenanceMCP server for local compression of various image formatsLast updated15233MIT
- AlicenseAqualityCmaintenanceData compression MCP server with auto-algorithm selection (gzip, brotli, deflate). 7 tools for compress, decompress, analyze, store, retrieve, list, and stats. Achieves 60x compression on docs, 30x on SQL. Lossless round-trip verified. Zero dependencies.Last updated92MIT
- Alicense-qualityAmaintenanceCompression AI - MCP server providing AI-powered tools and automation by MEOK AI LabsLast updated16MIT
- AlicenseAqualityFmaintenanceMCP server that compresses markdown files into caveman-style prose, cutting token usage by 65% while preserving code and structure.Last updated3MIT
Related MCP Connectors
MCP server for Wan AI video generation
MCP server for Tinify image optimization — one tool, max optimization
An MCP server for deep research or task groups
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ceedot-rock/zero-range-wave-compression'
If you have feedback or need assistance with the MCP directory API, please join our Discord server