@mcp-use/cli 2.17.0-canary.9 → 2.17.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.
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"AA6KA,UAAU,aAAa;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC5B,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;
|
|
1
|
+
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"AA6KA,UAAU,aAAa;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC5B,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAulBD;;GAEG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAibzE"}
|
package/dist/index.cjs
CHANGED
|
@@ -3380,10 +3380,11 @@ async function displayDeploymentProgress(api, deployment) {
|
|
|
3380
3380
|
if (finalDeployment.status === "running") {
|
|
3381
3381
|
const mcpServerUrl = getMcpServerUrl(finalDeployment);
|
|
3382
3382
|
let dashboardUrl = null;
|
|
3383
|
+
const webUrl = (await getWebUrl()).replace(/\/$/, "");
|
|
3383
3384
|
if (finalDeployment.serverSlug) {
|
|
3384
|
-
dashboardUrl =
|
|
3385
|
+
dashboardUrl = `${webUrl}/cloud/servers/${finalDeployment.serverSlug}`;
|
|
3385
3386
|
} else if (finalDeployment.serverId) {
|
|
3386
|
-
dashboardUrl =
|
|
3387
|
+
dashboardUrl = `${webUrl}/cloud/servers/${finalDeployment.serverId}`;
|
|
3387
3388
|
}
|
|
3388
3389
|
const inspectorUrl = `https://inspector.manufact.com/inspector?autoConnect=${encodeURIComponent(
|
|
3389
3390
|
mcpServerUrl
|