@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.
- package/README.md +7 -1
- package/dist/index.js +129 -129
- 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
|
|
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
|
|