@@ -24,30 +24,32 @@ The Redis MCP Server is a **natural language interface** designed for agentic ap
2424- "Index and search this vector"
2525
2626## 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 )
5153
5254
5355## Features
@@ -448,7 +450,7 @@ You can start the GitHub desired version of the Redis MCP server using `uvx` by
448450}
449451```
450452
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.
452454
453455``` json
454456{
@@ -473,31 +475,6 @@ Alternatively, you can start the server using `uv` and configure your `mcp.json`
473475}
474476```
475477
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-
501478For more information, see the [ VS Code documentation] ( https://code.visualstudio.com/docs/copilot/chat/mcp-servers ) .
502479
503480
0 commit comments