From 392c22ef06bfc16a3b9756e035f90bc01232a851 Mon Sep 17 00:00:00 2001 From: Sven Lito Date: Tue, 12 Aug 2025 15:12:16 +0700 Subject: [PATCH] docs: add PATH environment variable to uvx configuration Address gemini-code-assist bot feedback by adding explicit PATH environment variable to ensure uvx-executed scripts can find necessary executables regardless of inherited environment. Maintains simplified 'command: uvx' while adding execution robustness. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e162d36..6d37ad0 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,10 @@ "zen": { "command": "uvx", "args": ["--from", "git+https://github.com/BeehiveInnovations/zen-mcp-server.git", "zen-mcp-server"], - "env": { "GEMINI_API_KEY": "your-key-here" } + "env": { + "PATH": "/usr/local/bin:/usr/bin:/bin:/opt/homebrew/bin:~/.local/bin", + "GEMINI_API_KEY": "your-key-here" + } } } }