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"
]
}
}
}
}