The Redis Integration for Claude Desktop is a Model Context Protocol (MCP) server that enables seamless interaction between Redis databases and the Claude Desktop app. This server provides a set of standardized tools for LLMs to manage Redis key-value stores, making it easier to store, retrieve, and manipulate data.
The Redis MCP server offers the following tools for interacting with Redis:
set
key
(string): Redis key.value
(string): Value to store.expireSeconds
(number, optional): Expiration time in seconds.get
key
(string): Redis key to retrieve.delete
key
(string | string[]): Key or array of keys to delete.list
pattern
(string, optional): Pattern to match keys (default: *
).To use the Redis MCP server with the Claude Desktop app, add the following configuration to the mcpServers
section of your claude_desktop_config.json
:
When running Docker on macOS, use host.docker.internal
if the server is running on the host network (e.g., localhost). The Redis URL can be specified as an argument, defaulting to "redis://localhost:6379"
.
{
"mcpServers": {
"redis": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/redis",
"redis://host.docker.internal:6379"
]
}
}
}
Alternatively, you can use NPX to run the server:
{
"mcpServers": {
"redis": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis",
"redis://localhost:6379"
]
}
}
}
To build the Redis MCP server using Docker, run the following command:
docker build -t mcp/redis -f src/redis/Dockerfile .
This MCP server is licensed under the MIT License. You are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.