Redis MCP Server

Query and manage Redis data structures from your AI agent

By Redis (official) ★ 1.9K stars third-party cache database

The Redis MCP Server lets AI agents interact with Redis — get/set keys, work with lists, sets, hashes, and streams, and inspect cache state. Useful for debugging caching issues, monitoring queues, and building agents that manage application state.

Installation & Configuration

Add this block to your claude_desktop_config.json (or your agent framework's MCP config file):

{
  "mcpServers": {
    "redis": {
      "command": "uvx",
      "args": ["redis-mcp"],
      "env": { "REDIS_URL": "redis://localhost:6379" }
    }
  }
}

Config file location:

Available Tools (12)

Use Cases

Source & Documentation

GitHub Repository: https://github.com/redis/mcp-redis

Protocol: Model Context Protocol (MCP) — modelcontextprotocol.io

← Back to MCP Server Directory