@mcp-use/cli 3.4.0-canary.2 → 3.4.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.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -125,6 +125,9 @@ Deploy your MCP server to production via [manufact.com](https://manufact.com):
125
125
  # Login to Manufact cloud
126
126
  mcp-use login
127
127
 
128
+ # Non-interactive login with a pre-approved device code (web onboarding, agents)
129
+ mcp-use login --device-code <code>
130
+
128
131
  # Non-interactive login (for agents / CI) — picks an org without prompting
129
132
  mcp-use login --org <slug|id|name>
130
133
 
@@ -140,6 +143,7 @@ mcp-use logout
140
143
 
141
144
  **Deploy Options:**
142
145
 
146
+ - `--no-github` - Upload local source without connecting GitHub (platform-managed repo)
143
147
  - `--name <name>` - Custom deployment name
144
148
  - `--port <port>` - Server port (default: 3000)
145
149
  - `--runtime <runtime>` - Runtime environment: "node" or "python"
@@ -148,9 +152,12 @@ mcp-use logout
148
152
  **Example:**
149
153
 
150
154
  ```bash
151
- # Basic deployment
155
+ # Basic deployment (from GitHub when configured)
152
156
  mcp-use deploy
153
157
 
158
+ # Deploy without GitHub — uploads local source
159
+ mcp-use deploy --no-github
160
+
154
161
  # Deploy with custom options
155
162
  mcp-use deploy --name my-server --port 8000 --open
156
163
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mcp-use/cli",
3
3
  "type": "module",
4
- "version": "3.4.0-canary.2",
4
+ "version": "3.4.0",
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
- "@mcp-use/inspector": "8.0.1-canary.2",
59
- "mcp-use": "1.30.1-canary.2"
58
+ "mcp-use": "1.30.1",
59
+ "@mcp-use/inspector": "8.0.1"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/ws": "^8.18.1",