Skip to content

redis

gaby-redis

Read-only MCP connector for Redis. Exposes five tools: healthcheck, info, get_key, list_keys, memory_stats.

Safety

  • Read-only — no SET, DEL, FLUSHDB, or any write command is exposed. The absence of those tools is the guarantee, not a runtime flag the operator can flip.
  • list_keys(pattern="*") is refused on keyspaces larger than 100,000 keys. Use narrower prefixes like user:*.
  • list_keys hard-caps limit at 100.

Environment

Var Required Notes
REDIS_URL redis://user:pw@host:6379/0 or rediss:// for TLS.
REDIS_CA_FILE PEM CA file path for TLS connections.