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
-[VS Code with GitHub Copilot](#vs-code-with-github-copilot)
31
+
-[Augment](#augment)
32
+
-[Contributing](#contributing)
33
+
-[License](#license)
34
+
-[Badges](#badges)
35
+
-[Contact](#contact)
36
+
37
+
15
38
## Features
16
39
-**Natural Language Queries**: Enables AI agents to query and update Redis using natural language.
17
40
-**Seamless MCP Integration**: Works with any **MCP client** for smooth communication.
@@ -41,20 +64,20 @@ Additional tools.
41
64
42
65
### Quick Start with uvx (Recommended)
43
66
44
-
The easiest way to use the Redis MCP Server is with `uvx`, which allows you to run it directly from GitHub without installation:
67
+
The easiest way to use the Redis MCP Server is with `uvx`, which allows you to run it directly from GitHub without installation on the MCP Client side:
If you'd like to test the [Redis MCP Server](https://smithery.ai/server/@redis/mcp-redis) via Smithery, you can configure Claude Desktop automatically:
242
+
243
+
```bash
244
+
npx -y @smithery/cli install @redis/mcp-redis --client claude
245
+
```
246
+
247
+
Follow the prompt and provide the details to configure the server and connect to Redis (e.g. using a Redis Cloud database).
248
+
The procedure will create the proper configuration in the `claude_desktop_config.json` configuration file.
If you'd like to test the [Redis MCP Server](https://smithery.ai/server/@redis/mcp-redis) deployed [by Smithery](https://smithery.ai/docs/deployments), you can configure Claude Desktop automatically:
259
-
260
-
```bash
261
-
npx -y @smithery/cli install @redis/mcp-redis --client claude
262
-
```
263
-
264
-
Follow the prompt and provide the details to configure the server and connect to Redis (e.g. using a Redis Cloud database).
265
-
The procedure will create the proper configuration in the `claude_desktop_config.json` configuration file.
266
291
267
292
### Manual configuration
268
293
269
-
You can configure Claude Desktop to use this MCP Server.
294
+
You can configure Claude Desktop or any other MCP Client to use this MCP Server running the main file directly (it uses environment variables).
295
+
The following example is for Claude Desktop, but the same applies to any other MCP Client.
270
296
271
297
1. Specify your Redis credentials and TLS configuration
272
298
2. Retrieve your `uv` command full path (e.g. `which uv`)
273
299
3. Edit the `claude_desktop_config.json` configuration file
274
300
- on a MacOS, at `~/Library/Application\ Support/Claude/`
275
301
276
-
```commandline
302
+
```json
277
303
{
278
304
"mcpServers": {
279
305
"redis": {
@@ -297,7 +323,7 @@ You can configure Claude Desktop to use this MCP Server.
297
323
}
298
324
```
299
325
300
-
### Using with Docker
326
+
### With Docker
301
327
302
328
You can use a dockerized deployment of this server. You can either build your own image or use the official [Redis MCP Docker](https://hub.docker.com/r/mcp/redis) image.
303
329
@@ -309,7 +335,7 @@ docker build -t mcp-redis .
309
335
310
336
Finally, configure Claude Desktop to create the container at start-up. Edit the `claude_desktop_config.json` and add:
311
337
312
-
```commandline
338
+
```json
313
339
{
314
340
"mcpServers": {
315
341
"redis": {
@@ -345,16 +371,15 @@ To use the Redis MCP Server with VS Code, you need:
345
371
346
372
1. Enable the [agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode) tools. Add the following to your `settings.json`:
347
373
348
-
```commandline
374
+
```json
349
375
{
350
376
"chat.agent.enabled": true
351
377
}
352
378
```
353
379
354
380
2. Add the Redis MCP Server configuration to your `mcp.json` or `settings.json`:
355
381
356
-
```commandline
357
-
// Example .vscode/mcp.json
382
+
```json
358
383
{
359
384
"servers": {
360
385
"redis": {
@@ -377,8 +402,7 @@ To use the Redis MCP Server with VS Code, you need:
0 commit comments