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
The Redis MCP Server is available as a Python package, and can be installed from PyPI.
81
+
The Redis MCP Server is available as a PyPI package and as direct installation from the GitHub repository.
82
+
83
+
### From PyPI (recommended)
84
+
Configuring the latest Redis MCP Server version from PyPI, as an example, can be done importing the following JSON configuration in the desired framework or tool.
85
+
The `uvx` command will download the server on the fly (if not cached already), create a temporary environment, and then run it.
86
+
87
+
```commandline
88
+
{
89
+
"mcpServers": {
90
+
"RedisMCPServer": {
91
+
"command": "uvx",
92
+
"args": [
93
+
"--from",
94
+
"redis-mcp-server@latest",
95
+
"redis-mcp-server",
96
+
"--url",
97
+
"\"redis://localhost:6379/0\""
98
+
]
99
+
}
100
+
}
101
+
}
102
+
```
103
+
104
+
You will find examples for different platforms along the README.
105
+
106
+
### Testing the PyPI package
107
+
108
+
You can install the package as follows:
80
109
81
110
```sh
82
111
pip install redis-mcp-server
83
112
```
84
113
85
-
Alternatively you can use`uv`to install the package and its dependencies.
114
+
And start it using`uv` the package in your environment.
86
115
87
116
```sh
88
117
uv python install 3.13
89
118
uv sync
90
119
uv run redis-mcp-server --url redis://localhost:6379/0
91
120
```
92
121
93
-
### Running the latest bits
122
+
However, starting the MCP Server is most useful when delegate to the framework or tool where this MCP Server is configured.
123
+
124
+
### From GitHub
125
+
126
+
You can configure the desired Redis MCP Server version with `uvx`, which allows you to run it directly from GitHub (from a branch, or use a tagged release).
94
127
95
-
The easiest way to use the Redis MCP Server is with `uvx`, which allows you to run it directly from GitHub (from a branch, or use a tagged release). It is recommended to use a tagged release, the `main` branch is under active development and may contain breaking changes. As an example, you can execute the following command to run the `0.2.0` release:
128
+
> It is recommended to use a tagged release, the `main` branch is under active development and may contain breaking changes.
129
+
130
+
As an example, you can execute the following command to run the `0.2.0` release:
@@ -337,7 +372,9 @@ You can troubleshoot your agent workflows using the [OpenAI dashboard](https://p
337
372
338
373
### Augment
339
374
340
-
You can configure the Redis MCP Server in Augment by importing the server via JSON:
375
+
The preferred way of configuring the Redis MCP Server in Augment is to use the [Easy MCP](https://docs.augmentcode.com/setup-augment/mcp#redis) feature.
376
+
377
+
You can also configure the Redis MCP Server in Augment manually by importing the server via JSON:
341
378
342
379
```json
343
380
{
@@ -346,7 +383,7 @@ You can configure the Redis MCP Server in Augment by importing the server via JS
346
383
"command": "uvx",
347
384
"args": [
348
385
"--from",
349
-
"git+https://github.com/redis/mcp-redis.git",
386
+
"redis-mcp-server@latest",
350
387
"redis-mcp-server",
351
388
"--url",
352
389
"redis://localhost:6379/0"
@@ -362,17 +399,17 @@ The simplest way to configure MCP clients is using `uvx`. Add the following JSON
0 commit comments