Redis MCP Server (@gongrzhe/server-redis-mcp@1.0.0)
A Redis Model Context Protocol (MCP) server implementation for interacting with Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
Overview
Redis MCP Server is a microservice designed for performing Redis database operations and caching, enabling large language models (LLMs) to interact effectively with Redis key-value stores.
Users can install the server using Smithery or manually via npm, and configure it to interface with Redis databases by providing the relevant connection strings.
- Protocol for integrating LLMs with Redis databases - Operations for setting, getting, deleting, and listing keys in Redis - Flexible installation options including using Docker
- Caching data for AI applications to enhance performance.
- Managing key-value pairs for dynamic content storage.
- Interfacing with Redis for rapid data retrieval in LLM-trained environments.
Add to your AI client
Use these steps to connect Redis MCP Server (@gongrzhe/server-redis-mcp@1.0.0) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"redis-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis-mcp-server-gongrzhe"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"redis-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis-mcp-server-gongrzhe"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"redis-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis-mcp-server-gongrzhe"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"redis-mcp-server-gongrzhe": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis-mcp-server-gongrzhe"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"redis-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis-mcp-server-gongrzhe"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"redis-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis-mcp-server-gongrzhe"
]
}
}
}FAQ
Can this server handle multiple Redis connections?
Yes, it can be configured to handle multiple connections through custom settings.
Is Redis MCP Server open-source?
Yes, it is licensed under the ISC License and is available on GitHub.
What platforms does it support?
It supports any platform that can run Node.js, including both local installations and Docker environments.