@mcp-use/cli 2.17.0-canary.8 → 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
package/dist/index.js
CHANGED
|
@@ -3362,10 +3362,11 @@ async function displayDeploymentProgress(api, deployment) {
|
|
|
3362
3362
|
if (finalDeployment.status === "running") {
|
|
3363
3363
|
const mcpServerUrl = getMcpServerUrl(finalDeployment);
|
|
3364
3364
|
let dashboardUrl = null;
|
|
3365
|
+
const webUrl = (await getWebUrl()).replace(/\/$/, "");
|
|
3365
3366
|
if (finalDeployment.serverSlug) {
|
|
3366
|
-
dashboardUrl =
|
|
3367
|
+
dashboardUrl = `${webUrl}/cloud/servers/${finalDeployment.serverSlug}`;
|
|
3367
3368
|
} else if (finalDeployment.serverId) {
|
|
3368
|
-
dashboardUrl =
|
|
3369
|
+
dashboardUrl = `${webUrl}/cloud/servers/${finalDeployment.serverId}`;
|
|
3369
3370
|
}
|
|
3370
3371
|
const inspectorUrl = `https://inspector.manufact.com/inspector?autoConnect=${encodeURIComponent(
|
|
3371
3372
|
mcpServerUrl
|