Home/Servers/Redis MCP Server

Redis MCP Server

by Anthropic ยท โญ 1.4k stars ยท updated 3 months ago

Interact with Redis key-value stores. Get, set, delete keys, list patterns, check TTLs, and manage your Redis data directly from AI assistants.

84
Very Good

Quality Score Breakdown

maintenance85/100
community82/100
documentation84/100
compatibility85/100

Use Cases

  • โœ“get/set Redis keys
  • โœ“cache management
  • โœ“key pattern matching
  • โœ“TTL inspection

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "redis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-redis",
        "redis://localhost:6379"
      ]
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "redis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-redis",
        "redis://localhost:6379"
      ]
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "redis": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-redis",
          "redis://localhost:6379"
        ]
      }
    }
  }
}
โ† Back to all servers