|
|
@@ -112,7 +112,7 @@ Every field is optional.
|
|
|
"type": "local",
|
|
|
"command": ["npx", "-y", "@playwright/mcp"],
|
|
|
"enabled": true,
|
|
|
- "env": {}
|
|
|
+ "environment": {}
|
|
|
},
|
|
|
"remote-thing": {
|
|
|
"type": "remote",
|
|
|
@@ -371,7 +371,7 @@ Special object-shaped (not callbacks): `tool: { my_tool: { ... } }`,
|
|
|
"type": "local",
|
|
|
"command": ["npx", "-y", "@playwright/mcp"],
|
|
|
"enabled": true,
|
|
|
- "env": { "BROWSER": "chromium" }
|
|
|
+ "environment": { "BROWSER": "chromium" }
|
|
|
},
|
|
|
"github": {
|
|
|
"type": "remote",
|
|
|
@@ -384,7 +384,8 @@ Special object-shaped (not callbacks): `tool: { my_tool: { ... } }`,
|
|
|
}
|
|
|
```
|
|
|
|
|
|
-`command` is an array of strings. `type` is required. Use `enabled: false` to
|
|
|
+`command` is an array of strings. `environment` sets environment variables for
|
|
|
+a local MCP server. `type` is required. Use `enabled: false` to
|
|
|
disable a server inherited from a parent config. String values such as header
|
|
|
tokens support `{env:VAR}` interpolation (and `{file:path}`); the shell-style
|
|
|
`${VAR}` is not substituted.
|