@@ -24,30 +24,32 @@ The Redis MCP Server is a **natural language interface** designed for agentic ap
24
24
- "Index and search this vector"
25
25
26
26
## Table of Contents
27
- - [ Overview] ( #overview )
28
- - [ Features] ( #features )
29
- - [ Tools] ( #tools )
30
- - [ Installation] ( #installation )
31
- - [ From PyPI (recommended)] ( #from-pypi-recommended )
32
- - [ Testing the PyPI package] ( #testing-the-pypi-package )
33
- - [ From GitHub] ( #from-github )
34
- - [ Development Installation] ( #development-installation )
35
- - [ With Docker] ( #with-docker )
36
- - [ Configuration] ( #configuration )
37
- - [ Redis ACL] ( #redis-acl )
38
- - [ Configuration via command line arguments] ( #configuration-via-command-line-arguments )
39
- - [ Configuration via Environment Variables] ( #configuration-via-environment-variables )
40
- - [ Integrations] ( #integrations )
41
- - [ OpenAI Agents SDK] ( #openai-agents-sdk )
42
- - [ Augment] ( #augment )
43
- - [ Claude Desktop] ( #claude-desktop )
44
- - [ VS Code with GitHub Copilot] ( #vs-code-with-github-copilot )
45
- - [ Testing] ( #testing )
46
- - [ Example Use Cases] ( #example-use-cases )
47
- - [ Contributing] ( #contributing )
48
- - [ License] ( #license )
49
- - [ Badges] ( #badges )
50
- - [ Contact] ( #contact )
27
+ - [ Redis MCP Server] ( #redis-mcp-server )
28
+ - [ Overview] ( #overview )
29
+ - [ Table of Contents] ( #table-of-contents )
30
+ - [ Features] ( #features )
31
+ - [ Tools] ( #tools )
32
+ - [ Installation] ( #installation )
33
+ - [ From PyPI (recommended)] ( #from-pypi-recommended )
34
+ - [ Testing the PyPI package] ( #testing-the-pypi-package )
35
+ - [ From GitHub] ( #from-github )
36
+ - [ Development Installation] ( #development-installation )
37
+ - [ With Docker] ( #with-docker )
38
+ - [ Configuration] ( #configuration )
39
+ - [ Redis ACL] ( #redis-acl )
40
+ - [ Configuration via command line arguments] ( #configuration-via-command-line-arguments )
41
+ - [ Configuration via Environment Variables] ( #configuration-via-environment-variables )
42
+ - [ Integrations] ( #integrations )
43
+ - [ OpenAI Agents SDK] ( #openai-agents-sdk )
44
+ - [ Augment] ( #augment )
45
+ - [ Claude Desktop] ( #claude-desktop )
46
+ - [ VS Code with GitHub Copilot] ( #vs-code-with-github-copilot )
47
+ - [ Testing] ( #testing )
48
+ - [ Example Use Cases] ( #example-use-cases )
49
+ - [ Contributing] ( #contributing )
50
+ - [ License] ( #license )
51
+ - [ Badges] ( #badges )
52
+ - [ Contact] ( #contact )
51
53
52
54
53
55
## Features
@@ -448,7 +450,7 @@ You can start the GitHub desired version of the Redis MCP server using `uvx` by
448
450
}
449
451
```
450
452
451
- Alternatively, you can start the server using ` uv ` and configure your ` mcp.json ` or ` settings.json ` . This is usually desired for development.
453
+ Alternatively, you can start the server using ` uv ` and configure your ` mcp.json ` . This is usually desired for development.
452
454
453
455
``` json
454
456
{
@@ -473,31 +475,6 @@ Alternatively, you can start the server using `uv` and configure your `mcp.json`
473
475
}
474
476
```
475
477
476
- ``` json
477
- {
478
- "mcp" : {
479
- "servers" : {
480
- "redis" : {
481
- "type" : " stdio" ,
482
- "command" : " <full_path_uv_command>" ,
483
- "args" : [
484
- " --directory" ,
485
- " <your_mcp_server_directory>" ,
486
- " run" ,
487
- " src/main.py"
488
- ],
489
- "env" : {
490
- "REDIS_HOST" : " <your_redis_database_hostname>" ,
491
- "REDIS_PORT" : " <your_redis_database_port>" ,
492
- "REDIS_USERNAME" : " <your_redis_database_username>" ,
493
- "REDIS_PWD" : " <your_redis_database_password>" ,
494
- }
495
- }
496
- }
497
- }
498
- }
499
- ```
500
-
501
478
For more information, see the [ VS Code documentation] ( https://code.visualstudio.com/docs/copilot/chat/mcp-servers ) .
502
479
503
480
0 commit comments