@shiplightai/mcp 0.1.34 → 0.1.35

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.
Files changed (3) hide show
  1. package/README.md +7 -1
  2. package/dist/index.js +129 -129
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -53,7 +53,13 @@ Pass environment variables through your MCP config:
53
53
  }
54
54
  ```
55
55
 
56
- The server also reads inherited host environment variables, so you can export `SHIPLIGHT_API_TOKEN` before launching your MCP client instead of duplicating it in the MCP config.
56
+ The server resolves environment variables in this order:
57
+
58
+ 1. Variables passed explicitly by your MCP client config
59
+ 2. Inherited host environment variables
60
+ 3. A `.env` file in the current working directory where the MCP server starts
61
+
62
+ Existing environment variables are never overridden by `.env`, so project-local `.env` values act as a fallback.
57
63
 
58
64
  ## CLI Options
59
65