@bike4mind/cli 0.20.2 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -361,7 +361,9 @@ You can run MCP servers in Docker containers for isolation and portability:
361
361
 
362
362
  **Docker Configuration Notes:**
363
363
  - The `-i` flag is required for stdin communication with the MCP server
364
- - Use `-e VAR_NAME` (without value) to pass environment variables from the host
364
+ - Use `-e VAR_NAME` (without value) to pass a variable through to the container. It must be listed in this server's `env` block: the MCP child is started with those variables plus the MCP SDK's own defaults (`PATH`, `HOME`, `SHELL`, `TERM`, `USER`), never with your whole shell environment
365
+ - Keys that would have the runtime load code before the server starts - `NODE_*`, `LD_*`, `DYLD_*`, `ELECTRON_RUN_AS_NODE` - are refused and logged. Everything else in `env` is passed through, so `HTTPS_PROXY`, `NO_PROXY` and a `PATH` your wrapper needs all work here
366
+ - A server entry with no `command` runs one of the bundled servers instead, and those take only the variables that server declares (`GITHUB_ACCESS_TOKEN` for github, the `NOTION_*` set for notion, and so on) - anything else in `env` is withheld and named in a warning
365
367
  - The `--rm` flag ensures containers are cleaned up after use
366
368
  - Requires Docker to be installed and running
367
369