Redis MCP Server (GongRzhe)

Redis MCP server enabling AI agents to interact with Redis in-memory data store — getting and setting key-value pairs, working with Redis data structures (lists, sets, hashes, sorted sets), executing Redis commands, inspecting TTLs and expiry, and integrating Redis's fast in-memory capabilities into agent-driven caching, session management, and real-time data workflows.

Evaluated Mar 06, 2026 (0d ago) vcurrent
Homepage ↗ Repo ↗ Developer Tools redis cache key-value mcp-server in-memory pub-sub session-store
⚙ Agent Friendliness
75
/ 100
Can an agent use this?
🔒 Security
70
/ 100
Is it safe for agents?
⚡ Reliability
72
/ 100
Does it work consistently?

Score Breakdown

⚙ Agent Friendliness

MCP Quality
68
Documentation
72
Error Messages
70
Auth Simplicity
85
Rate Limits
88

🔒 Security

TLS Enforcement
80
Auth Strength
70
Scope Granularity
60
Dep. Hygiene
70
Secret Handling
72

TLS via rediss:// URI (configure in Redis). AUTH or ACL authentication. Community MCP. Never expose Redis publicly. Use ACL to restrict destructive commands. Protect credentials.

⚡ Reliability

Uptime/SLA
72
Version Stability
72
Breaking Changes
75
Error Recovery
70
AF Security Reliability

Best When

An agent needs to inspect or manipulate Redis data — cache debugging, session inspection, queue management, or real-time counter/leaderboard operations.

Avoid When

You need durable, queryable data storage — Redis is optimized for speed, not complex queries or large-scale persistence.

Use Cases

  • Reading and writing cache values from application debugging agents
  • Inspecting session data and TTLs from authentication debugging agents
  • Managing queues and pub/sub channels from messaging agents
  • Checking rate limit counters from API monitoring agents
  • Analyzing Redis data structure contents from data inspection agents
  • Clearing cache entries for cache invalidation from operations agents

Not For

  • Persistent data storage at scale (Redis is primarily for fast in-memory access)
  • Complex queries and aggregations (use PostgreSQL or BigQuery instead)
  • Teams using Memcached or other caching systems

Interface

REST API
No
GraphQL
No
gRPC
No
MCP Server
Yes
SDK
Yes
Webhooks
No

Authentication

Methods: username_password none
OAuth: No Scopes: No

Redis AUTH command for password authentication. Redis 6+ supports ACL-based username/password. Many development Redis instances run without auth — production should always use AUTH. TLS via rediss:// URI.

Pricing

Model: open-source
Free tier: Yes
Requires CC: No

Redis Community Edition is open source and free. Redis Cloud offers managed hosting. Cloud providers offer managed Redis (ElastiCache, Azure Cache). MCP server is community open source.

Agent Metadata

Pagination
cursor
Idempotent
Full
Retry Guidance
Not documented

Known Gotchas

  • Redis commands are direct and powerful — DEL, FLUSHDB, FLUSHALL are destructive
  • No schema or data type enforcement — agents must know what data structure a key uses
  • KEYS * command is blocking and dangerous on large Redis instances (use SCAN instead)
  • TTL-based expiry means data may disappear between reads — agents must handle key-not-found
  • Redis ACLs (v6+) limit which commands users can run — check ACL list if commands fail
  • Community MCP server — may not support all Redis commands or data types (streams, etc.)

Alternatives

Full Evaluation Report

Detailed scoring breakdown, competitive positioning, security analysis, and improvement recommendations for Redis MCP Server (GongRzhe).

$99

Scores are editorial opinions as of 2026-03-06.

5220
Packages Evaluated
26151
Need Evaluation
173
Need Re-evaluation
Community Powered