Redis · supported engine

A Redis GUI for keys, streams, and clusters.

Binary-safe key browser with typed get/set, a full command console, streams and consumer groups, cluster topology, client list and kill, and SSH remapping for clusters behind a bastion.

Redis & Valkey · cluster topology · SSH remapping

Friends don't let friends KEYS

The command trace Mongrel shows for your keyspace.

Click any command below to see latency, keyspace stats, and what the workbench surfaces. Same view you get inside Mongrel.

// SCAN · cursor 0 · MATCH cache:session:*

Cursor-based iteration over a 4.2M-key keyspace without blocking. COUNT 100 hint per round-trip; the cursor resumes where it left off. Replaces the KEYS call that stalled the server for 850ms.

-- session-cache · redis-prod-1 · db0

KEYS cache:session:*
-- 4,231,884 keys · 850ms · server blocked

SCAN 0 MATCH "cache:session:*" COUNT 100
1) "9382"
2) 1) "cache:session:8f2c…"  … 100 keys

TTL cache:session:8f2c
-- (integer) -1 · no expiry set

-- ✓ Guard: KEYS is gated behind the danger zone
-- ✓ Remedy: EXPIRE cache:session:8f2c 3600

EXPIRE cache:session:8f2c 3600
-- (integer) 1 · expiry set
Redis surface

What Mongrel ships for Redis.

Binary-safe key browser

Browse keys with raw bytes intact - nulls, non-printable sequences, and non-UTF-8 names stay lossless end to end. Cursor-paged SCAN with MATCH glob filters.

Typed get/set

String, list, hash, set, zset, and stream values each get a native editor. No guesswork, no serialized blobs.

Command console

A full RESP console with command history and a write classifier that keeps blocking and keyspace-wide commands gated behind the danger zone.

Streams & consumer groups

Read streams with XRANGE/XREAD, inspect consumer groups with XINFO, and append entries with typed XADD from the value editor.

Cluster topology

See primaries and replicas with their slot ranges, and get failover notifications when the master switches - Redis Cluster and Valkey alike.

Client list & kill

See every connected client via CLIENT LIST - idle time, age, last command - and kill the ones misbehaving from the danger-gated panel.

TTL & expiry editing

See each key's TTL right in the key list - including keys with no expiry - and set or adjust the expiration in place from the value view.

SSH cluster remapping

Reach a cluster through a bastion. Mongrel remaps MOVED and ASK redirects through the tunnel so slot hops just work.

Keyset export

Export console result sets - a SCAN with your MATCH glob, an HGETALL, a stream range - to JSON or CSV, or grab a single key's value as CSV from the browser.

Connect Redis in 30 seconds.

7-day trial. macOS, Windows, Linux. No credit card.