File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -504,7 +504,7 @@ You can start the GitHub desired version of the Redis MCP server using `uvx` by
504504"servers" : {
505505 "redis" : {
506506 "type" : " stdio" ,
507- "command" : " uvx" ,
507+ "command" : " uvx" ,
508508 "args" : [
509509 " --from" , " redis-mcp-server@latest" ,
510510 " redis-mcp-server" ,
@@ -514,6 +514,27 @@ You can start the GitHub desired version of the Redis MCP server using `uvx` by
514514}
515515```
516516
517+ #### Suppressing uvx Installation Messages
518+
519+ If you want to suppress uvx installation messages that may appear as warnings in MCP client logs, use the ` -qq ` flag:
520+
521+ ``` json
522+ "servers" : {
523+ "redis" : {
524+ "type" : " stdio" ,
525+ "command" : " uvx" ,
526+ "args" : [
527+ " -qq" ,
528+ " --from" , " redis-mcp-server@latest" ,
529+ " redis-mcp-server" ,
530+ " --url" , " redis://localhost:6379/0"
531+ ]
532+ },
533+ }
534+ ```
535+
536+ The ` -qq ` flag enables silent mode, which suppresses "Installed X packages" messages that uvx writes to stderr during package installation.
537+
517538Alternatively, you can start the server using ` uv ` and configure your ` mcp.json ` . This is usually desired for development.
518539
519540``` json
You can’t perform that action at this time.
0 commit comments