@mcp-use/cli 2.15.0-canary.2 → 2.15.0-canary.4
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 +2 -2
- package/dist/commands/deploy.d.ts +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/utils/api.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -122,7 +122,7 @@ mcp-use start [options]
|
|
|
122
122
|
Deploy your MCP server to production via [manufact.com](https://manufact.com):
|
|
123
123
|
|
|
124
124
|
```bash
|
|
125
|
-
# Login to
|
|
125
|
+
# Login to Manufact cloud
|
|
126
126
|
mcp-use login
|
|
127
127
|
|
|
128
128
|
# Check authentication status
|
|
@@ -371,7 +371,7 @@ MCP_URL=https://myserver.com mcp-use build
|
|
|
371
371
|
|
|
372
372
|
#### Deployment & Cloud
|
|
373
373
|
|
|
374
|
-
For deploying to
|
|
374
|
+
For deploying to Manufact cloud, see the environment variables in this section for detailed configuration:
|
|
375
375
|
|
|
376
376
|
```bash
|
|
377
377
|
# Frontend URL (where /auth/cli page is)
|
|
@@ -8,7 +8,7 @@ interface DeployOptions {
|
|
|
8
8
|
envFile?: string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* Deploy command - deploys MCP server to
|
|
11
|
+
* Deploy command - deploys MCP server to Manufact cloud
|
|
12
12
|
*/
|
|
13
13
|
export declare function deployCommand(options: DeployOptions): Promise<void>;
|
|
14
14
|
export {};
|
package/dist/index.cjs
CHANGED
|
@@ -5997,6 +5997,8 @@ Looked for:
|
|
|
5997
5997
|
if (mcpUrl) {
|
|
5998
5998
|
env2.MCP_URL = mcpUrl;
|
|
5999
5999
|
console.log(source_default.whiteBright(`Tunnel: ${mcpUrl}/mcp`));
|
|
6000
|
+
} else if (!env2.MCP_URL) {
|
|
6001
|
+
env2.MCP_URL = `http://localhost:${port}`;
|
|
6000
6002
|
}
|
|
6001
6003
|
const serverProc = (0, import_node_child_process9.spawn)("node", [serverFile], {
|
|
6002
6004
|
cwd: projectPath,
|