You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
4
+
5
+
## Components
6
+
7
+
### Tools
8
+
9
+
-**set**
10
+
- Set a Redis key-value pair with optional expiration
11
+
- Input:
12
+
-`key` (string): Redis key
13
+
-`value` (string): Value to store
14
+
-`expireSeconds` (number, optional): Expiration time in seconds
15
+
16
+
-**get**
17
+
- Get value by key from Redis
18
+
- Input: `key` (string): Redis key to retrieve
19
+
20
+
-**delete**
21
+
- Delete one or more keys from Redis
22
+
- Input: `key` (string | string[]): Key or array of keys to delete
23
+
24
+
-**list**
25
+
- List Redis keys matching a pattern
26
+
- Input: `pattern` (string, optional): Pattern to match keys (default: *)
27
+
28
+
## Usage with Claude Desktop
29
+
30
+
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your `claude_desktop_config.json`:
31
+
32
+
### Docker
33
+
34
+
* when running docker on macos, use host.docker.internal if the server is running on the host network (eg localhost)
35
+
* Redis URL can be specified as an argument, defaults to "redis://localhost:6379"
This MCP server is licensed under the MIT License. This means 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.
0 commit comments