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.
This commit is contained in:
Sven Lito
2025-08-12 15:12:16 +07:00
parent b9a4db1352
commit 392c22ef06

View File

@@ -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"
}
}
}
}