Redis MCP Server
Archived reference MCP server exposing basic Redis set/get/delete/list to any MCP-capable LLM client.
Developers prototyping MCP agents that need a simple cache, session store, or scratchpad backed by Redis, and teams wanting a minimal reference to fork.
Production agents that need rich Redis data types (streams, JSON, vector search) or ongoing upstream maintenance; use redis/mcp-redis instead.
Redis MCP Server is a reference Model Context Protocol server, originally published under the modelcontextprotocol organization, that lets any MCP-capable LLM client (Claude Desktop, Cursor, VS Code with Copilot, Windsurf, custom agents) read and write against a Redis key-value store using standardized tool calls. It exposes four straightforward operations wrapped as MCP tools: set (with optional TTL), get, delete (single or multiple keys), and list (KEYS-style pattern search, defaulting to all keys). Under the hood it uses the official node-redis client and adds exponential-backoff retry logic (up to five attempts, 1s to 30s) so transient connection blips do not immediately fail a tool call. Configuration is a single Redis URL argument (redis://host:port), which makes it trivial to point at a local dev instance, a Docker container, or a managed Redis on the same network. Distribution is via NPX or a prebuilt Docker image, and the repo ships one-click install buttons for VS Code and VS Code Insiders. This particular implementation was archived by Anthropic on 29 May 2025 and moved to the servers-archived monorepo; the community-maintained successor lives at redis/mcp-redis (Python, with richer data-type coverage including hashes, streams, JSON, and vector search). The archived server remains useful as a minimal, auditable reference for teams building their own MCP integrations or wiring an agent to a cache/session store where only basic KV semantics are needed.
A clean, minimal reference server that does exactly four things well, but its May 2025 archival means anyone shipping to production should move to Redis's own actively maintained mcp-redis. Great for learning MCP internals; not the one you want long-term.
— The AI Tool Bible editorial team
Pros
- ✅ Zero-config for the common case: one Redis URL and you are done
- ✅ Ships as both NPX and Docker, plus one-click VS Code / VS Code Insiders install
- ✅ MIT licensed and small enough to fork and audit end-to-end
- ✅ Exponential-backoff retry (up to 5 attempts) smooths over transient network blips
- ✅ Reference implementation from the MCP maintainers, so the tool schemas are canonical
Cons
- ⚠️ Archived on 29 May 2025 and no longer receiving updates or security fixes
- ⚠️ Only covers basic KV operations: no hashes, sets, sorted sets, streams, pub/sub, or RedisJSON/RediSearch
- ⚠️ list uses KEYS-style patterns, which can block on large production databases
- ⚠️ No built-in auth beyond whatever the Redis URL carries; you must protect the endpoint yourself
- ⚠️ For active development, Redis's own Python-based mcp-redis server is now the recommended path
Use cases
Explore related
Compare with similar tools
All in MCP Servers →Airtable MCP Server
Model Context Protocol server that gives LLMs full read/write access to your Airtable bases.
Apple Notes MCP
Let Claude read your local Apple Notes over the Model Context Protocol.
AWS MCP Servers
Official AWS Labs collection of Model Context Protocol servers for connecting AI coding assistants and agents to AWS services and documentation.
Azure MCP Server
Official Microsoft MCP server that exposes 40+ Azure services to AI agents under the developer's own Entra ID credentials.
Blender MCP
Give Claude hands inside Blender — an MCP server for natural-language 3D modeling.
Brave Search MCP
Give any MCP client web and local search powered by the Brave Search API.