From 7e8fbaf04e9c5bbfea07acafcef7cbebb07fee5b Mon Sep 17 00:00:00 2001 From: Rahul Karajgikar <50844303+rahulkarajgikar@users.noreply.github.com> Date: Mon, 14 Apr 2025 18:12:28 -0700 Subject: [PATCH] Update install_mcp_server.sh - remove piping to /dev/null this improves logging when the installation fails --- libs/mcp-server/scripts/install_mcp_server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/mcp-server/scripts/install_mcp_server.sh b/libs/mcp-server/scripts/install_mcp_server.sh index 30e844b9..aae6e23c 100755 --- a/libs/mcp-server/scripts/install_mcp_server.sh +++ b/libs/mcp-server/scripts/install_mcp_server.sh @@ -59,7 +59,7 @@ fi source "$VENV_DIR/bin/activate" # Always install/upgrade the latest version of cua-mcp-server -pip install --upgrade "cua-mcp-server" >/dev/null 2>&1 +pip install --upgrade "cua-mcp-server" # Run the MCP server with isolation from development paths cd "$VENV_DIR" # Change to venv directory to avoid current directory in path