From c78f911645ba84d7cd363e16b3e79592d9b6ade7 Mon Sep 17 00:00:00 2001 From: Vasil Chomakov Date: Mon, 20 Oct 2025 20:51:46 +0300 Subject: [PATCH] docs: add uvx quiet mode example to suppress installation logs --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0d6c2f..dd61eac 100644 --- a/README.md +++ b/README.md @@ -504,7 +504,7 @@ You can start the GitHub desired version of the Redis MCP server using `uvx` by "servers": { "redis": { "type": "stdio", - "command": "uvx", + "command": "uvx", "args": [ "--from", "redis-mcp-server@latest", "redis-mcp-server", @@ -514,6 +514,27 @@ You can start the GitHub desired version of the Redis MCP server using `uvx` by } ``` +#### Suppressing uvx Installation Messages + +If you want to suppress uvx installation messages that may appear as warnings in MCP client logs, use the `-qq` flag: + +```json +"servers": { + "redis": { + "type": "stdio", + "command": "uvx", + "args": [ + "-qq", + "--from", "redis-mcp-server@latest", + "redis-mcp-server", + "--url", "redis://localhost:6379/0" + ] + }, +} +``` + +The `-qq` flag enables silent mode, which suppresses "Installed X packages" messages that uvx writes to stderr during package installation. + Alternatively, you can start the server using `uv` and configure your `mcp.json`. This is usually desired for development. ```json