Skip to content

Commit c78f911

Browse files
committed
docs: add uvx quiet mode example to suppress installation logs
1 parent db874ad commit c78f911

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
517538
Alternatively, you can start the server using `uv` and configure your `mcp.json`. This is usually desired for development.
518539

519540
```json

0 commit comments

Comments
 (0)