Redis
Query Redis from Claude — keys, scans, hash gets, pub/sub status. Useful for cache debugging and quick state inspection.
Delv Safety Grade: A
Score 84/100 · assessed 2026-04-28
Redis's official MCP server provides read-heavy database access for cache inspection and debugging. The maintainer score is excellent given Redis's status as a major open-source database vendor with institutional backing. Permissions are moderately scoped: whilst primarily read-focused (key lookups, scans, hash operations), the server does connect to your Redis instance with whatever credentials you provide, meaning it inherits full read/write capability at the protocol level even if the exposed tools emphasise reads. Supply chain is solid via PyPI packaging with standard uvx installation. Transparency is strong with open source code and Redis's established documentation practices. No known security incidents. The main consideration is that you're granting network access to your Redis instance, so credential management and network segmentation matter. Appropriate for development and debugging workflows where you trust the MCP client environment.
Lethal Trifecta (prompt-injection exposure)
ONE OF THREECache contents may include sensitive payloads. Otherwise private-only.
Green flags
- Official Redis vendor implementation with institutional backing
- Read-focused tooling appropriate for debugging workflows
- Standard PyPI distribution with version pinning available
- Open source with Redis's established maintenance practices
- Clear use case: cache inspection without context switching
Red flags
- Requires direct Redis credentials in environment variables
- Network access to potentially production Redis instances
- Protocol-level access broader than exposed read-only tools suggest
Permissions requested
Install
uvx --from redis-mcp-server@latest redis-mcp-server
REDIS_HOSTREDIS_PORTReview
Install this if you regularly debug Redis state and want to query it without leaving Claude. Skip it if you're happy in redis-cli or don't have Redis in your stack. It's a focused tool that does one thing well: making your cache inspectable via conversation.
Good at
- Official Redis implementation, so it'll track the project and stay current.
- Handles the tedious bits: connection pooling, command formatting, error translation.
- Natural language queries beat remembering SCAN cursor syntax for one-off checks.
- Useful for explaining data structures to teammates, Claude can pull and annotate real examples.
- Narrow scope means it's unlikely to break or bloat, it does cache inspection and that's it.
Watch out
- No visible authentication config in the docs, password-protected instances need extra setup.
- Environment variables for host and port mean remote Redis needs SSH tunnels or network access.
- Command set is deliberately limited, don't expect bulk operations or Lua script support.
- If you're fluent in redis-cli, the natural language layer might feel slower than direct commands.
Getting started
Works with
Similar MCPs
- NeonNeon's official MCP for serverless Postgres. Manage projects, branches, and run SQL against any of your databases.
- SupabaseSupabase's official MCP — query Postgres, manage auth, inspect storage buckets, all from your agent.
- PostgresQuery Postgres databases with natural language. Read-only access by default - the agent sees your schema and runs SELECT queries safely.
- ClickHouseClickHouse MCP for fast analytical queries. Built by ClickHouse Inc, supports cluster topology discovery.