@mcp-use/cli 3.6.0-canary.12 → 3.6.0-canary.14
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 +14 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -150,6 +150,9 @@ mcp-use logout
|
|
|
150
150
|
- `--branch <name>` - Deploy branch (default: current git branch). Also scopes `--env` / `--env-file` sync to that branch's preview env.
|
|
151
151
|
- `--env <key=value...>` - Set environment variable **values** (repeatable)
|
|
152
152
|
- `--env-file <path>` - Load environment variable values from a `.env` file
|
|
153
|
+
- `--root-dir <path>` - Subdirectory to deploy from (monorepos)
|
|
154
|
+
- `--watch-paths <glob...>` - Only auto-deploy when matching files change (monorepos); set on new-server creation
|
|
155
|
+
- `--wait-for-ci` - Hold GitHub auto-deploys until other check runs pass; set on new-server creation
|
|
153
156
|
- `--open` - Open deployment in browser after success
|
|
154
157
|
|
|
155
158
|
**Example:**
|
|
@@ -190,12 +193,20 @@ mcp-use servers update my-server --name "My Server" --description "…"
|
|
|
190
193
|
|
|
191
194
|
# Clear a build/start override (pass an empty string)
|
|
192
195
|
mcp-use servers update my-server --build-command "" --start-command ""
|
|
196
|
+
|
|
197
|
+
# Monorepos: scope auto-deploys to an app's own files + shared code
|
|
198
|
+
mcp-use servers update my-server \
|
|
199
|
+
--watch-paths "apps/my-server/**" "packages/shared/**" \
|
|
200
|
+
--deploy-branches "release/*"
|
|
193
201
|
```
|
|
194
202
|
|
|
195
203
|
Flags: `--branch` (production branch), `--name`, `--description`,
|
|
196
|
-
`--build-command`, `--start-command`, `--
|
|
197
|
-
|
|
198
|
-
|
|
204
|
+
`--build-command`, `--start-command`, `--root-dir`, `--watch-paths`,
|
|
205
|
+
`--deploy-branches`, `--wait-for-ci` / `--no-wait-for-ci`, `--org`. At least
|
|
206
|
+
one is required. Pass an empty string to `--build-command`, `--start-command`,
|
|
207
|
+
or `--root-dir` to clear it; pass an empty string to `--watch-paths` /
|
|
208
|
+
`--deploy-branches` to clear the filter (deploy on any change / allow all
|
|
209
|
+
branches).
|
|
199
210
|
|
|
200
211
|
### `servers env` — environment variables
|
|
201
212
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-use/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.6.0-canary.
|
|
4
|
+
"version": "3.6.0-canary.14",
|
|
5
5
|
"description": "The mcp-use CLI is a tool for building and deploying MCP servers with support for ChatGPT Apps, Code Mode, OAuth, Notifications, Sampling, Observability and more.",
|
|
6
6
|
"author": "mcp-use, Inc.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"vite-plugin-singlefile": "^2.3.2",
|
|
56
56
|
"ws": "^8.19.0",
|
|
57
57
|
"zod": "4.3.5",
|
|
58
|
-
"
|
|
59
|
-
"mcp-use": "
|
|
58
|
+
"mcp-use": "1.33.0-canary.14",
|
|
59
|
+
"@mcp-use/inspector": "11.0.0-canary.14"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/ws": "^8.18.1",
|