Enables exploring and diagnosing a Redis instance from MCP clients with read-only safety, using SCAN instead of KEYS for safe key enumeration.
Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find.
Install from
M8ven verifies MCPs across every public registry — install directly from whichever one you prefer.
process.env. You'll be asked to provide them before it can run.ALLOW_WRITES— Read-only is the default. To let the agent run mutating commands (SET, DEL, EXPIRE, HSET, ...) via redis_command, add =1:REDIS_COMMAND_TIMEOUT_MS— 10000 Per-command timeout. A command that runs longer is aborted so a wedged call can't hang the agent.REDIS_CONNECT_TIMEOUT_MS— 10000 TCP connect timeout. Without this, a dead host hangs until the OS gives up (~2 minutes).REDIS_MAX_KEYS— redis_scan Enumerate keys with cursor-based SCAN (never KEYS). Optional glob match, value-type filter, and resumable cursor. Capped at .REDIS_MAX_VALUE_BYTESREDIS_SCAN_COUNT— 100 COUNT hint per SCAN iteration. Higher = fewer round-trips but more work per iteration.REDIS_TLS_REJECT_UNAUTHORIZED— unset Set to false to skip TLS cert verification (for managed Redis using private-CA certs). Connection is still encrypted.REDIS_URL— "": "redis://:password@host:6379/0"[](https://m8ven.ai/mcp/yawlabs-redis-mcp-i8qn8f)