Skip to main content
📖 The AI Tool Bible
Redis MCP Server logo

Redis MCP Server

Archived reference MCP server exposing basic Redis set/get/delete/list to any MCP-capable LLM client.

Free· Free and open source (MIT). Self-hosted; you supply your own Redis instance.MCP Servers
Visit website →

In short

Redis MCP Server is a free, archived reference implementation that connects MCP-capable LLM clients to Redis for basic key-value operations. It is best suited for developers prototyping agent memory or simple cache integrations who need a minimal, auditable codebase.

Best for

Developers prototyping MCP agents that need a simple cache, session store, or scratchpad backed by Redis, and teams wanting a minimal reference to fork.

Skip if

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.

Editor's take

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

Agent short-term memorySession state for chat agentsFeature-flag lookup from an LLM tool callRate-limit counters queried by an agentPrototype MCP integrationsSimple cache for RAG intermediate resultsQueue-style scratchpad between agent steps

Frequently asked

What specific Redis operations does this server support?
It exposes four basic operations: set (with optional TTL), get, delete (single or multiple keys), and list (KEYS-style pattern search). It does not support advanced data types like hashes, streams, or vector search.
Is this server currently maintained and recommended for production use?
No, the server was archived by Anthropic on May 29, 2025, and no longer receives updates or security fixes. For production use requiring rich data types or ongoing maintenance, Redis's own Python-based mcp-redis server is recommended.
How is the Redis MCP Server configured and deployed?
Configuration requires only a single Redis URL argument. It can be distributed via NPX or a prebuilt Docker image, and the repository includes one-click install buttons for VS Code and VS Code Insiders.
What types of LLM clients are compatible with this server?
It works with any MCP-capable LLM client, including Claude Desktop, Cursor, VS Code with Copilot, Windsurf, and custom agents.

Explore related

Compare with similar tools

All in MCP Servers
AM

Airtable MCP Server

MCP Servers

Model Context Protocol server that gives LLMs full read/write access to your Airtable bases.

Free· Open source (MIT) and free to run. You still need an Airtable account and personal access token; Airtable itself is Free / Team $20 per user/mo / Business $45 per user/mo / Enterprise (custom).Natural-language CRM queries against AirtableLLM-driven lead triage and enrichment
AN

Apple Notes MCP

MCP Servers

Let Claude read your local Apple Notes over the Model Context Protocol.

Free· Free / open-source (MIT). No hosted service; runs locally on your Mac.Personal knowledge retrieval from Apple NotesSearching decade-old meeting notes during a Claude chat
AM

AWS MCP Servers

MCP Servers

Official AWS Labs collection of Model Context Protocol servers for connecting AI coding assistants and agents to AWS services and documentation.

Free· Free and open source (Apache 2.0). AWS service usage billed at standard AWS rates. Optional AWS-hosted 'remote managed' servers included at no additional charge beyond consumed AWS services.AWS infrastructure-as-code scaffolding with CDK or CloudFormationGrounded answers from live AWS documentation
AM

Azure MCP Server

MCP Servers

Official Microsoft MCP server that exposes 40+ Azure services to AI agents under the developer's own Entra ID credentials.

Free· Server is free and MIT-licensed. Azure resource usage is billed separately at standard Azure rates based on whatever services the agent queries or mutates.Natural-language Azure resource inventoryLog Analytics and Kusto (KQL) querying from an agent
BM

Blender MCP

MCP Servers · Model-agnostic; commonly paired with Claude (Sonnet/Opus) via Claude Desktop, but works with any MCP-capable client

Give Claude hands inside Blender — an MCP server for natural-language 3D modeling.

Free· Free and open-source (MIT license). No hosted service, no subscription; you supply your own MCP-capable client (Claude Desktop, Cursor, VS Code, OpenCode) and pay only for whatever LLM the client uses.AI-assisted 3D scene blockingGenerative prop and mesh creation via Hyper3D Rodin
BS

Brave Search MCP

MCP Servers

Give any MCP client web and local search powered by the Brave Search API.

Freemium· Free: $0 USD · Team: $4 USD per user/month · Enterprise: $21 USD per user/monthGrounded web search inside Claude DesktopAgent fact-checking and citation lookup