@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/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 = `https://manufact.com/cloud/servers/${finalDeployment.serverSlug}`;
3367
+ dashboardUrl = `${webUrl}/cloud/servers/${finalDeployment.serverSlug}`;
3367
3368
  } else if (finalDeployment.serverId) {
3368
- dashboardUrl = `https://manufact.com/cloud/servers/${finalDeployment.serverId}`;
3369
+ dashboardUrl = `${webUrl}/cloud/servers/${finalDeployment.serverId}`;
3369
3370
  }
3370
3371
  const inspectorUrl = `https://inspector.manufact.com/inspector?autoConnect=${encodeURIComponent(
3371
3372
  mcpServerUrl