@mcp-use/cli 3.4.2-canary.0 → 3.4.2

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
@@ -5405,6 +5405,7 @@ async function deployViaManagedUpload(api, options, ctx) {
5405
5405
  env: Object.keys(envVars).length > 0 ? envVars : void 0
5406
5406
  });
5407
5407
  deploymentId = result.deploymentId ?? void 0;
5408
+ if (result.server?.id) serverId = result.server.id;
5408
5409
  if (result.server?.id && deploymentId) {
5409
5410
  await saveProjectLink(cwd, {
5410
5411
  deploymentId,
@@ -5420,6 +5421,20 @@ async function deployViaManagedUpload(api, options, ctx) {
5420
5421
  }
5421
5422
  console.log(source_default.green("\u2713 Deployment created: ") + source_default.gray(deploymentId));
5422
5423
  await displayDeploymentProgress(api, deploymentId, { yes: options.yes });
5424
+ console.log();
5425
+ console.log(
5426
+ source_default.gray(
5427
+ "Source is stored in a private mcp-use-managed repository (no GitHub remote in this folder)."
5428
+ )
5429
+ );
5430
+ if (serverId) {
5431
+ const webUrl = (await getWebUrl()).replace(/\/$/, "");
5432
+ const config = await readConfig();
5433
+ const settingsUrl = config.orgSlug ? `${webUrl}/cloud/${config.orgSlug}/servers/${serverId}` : `${webUrl}/cloud/servers/${serverId}`;
5434
+ console.log(
5435
+ source_default.gray("View it or move it to your own GitHub from the dashboard: ") + source_default.cyan(settingsUrl)
5436
+ );
5437
+ }
5423
5438
  }
5424
5439
  async function deployCommand(options) {
5425
5440
  try {
@@ -6934,7 +6949,9 @@ async function getServerCommand(idOrSlug, options) {
6934
6949
  if (server.connectedRepository) {
6935
6950
  const cr = server.connectedRepository;
6936
6951
  console.log(source_default.white("\nRepository"));
6937
- console.log(source_default.white(" Full name: ") + source_default.gray(cr.repoFullName));
6952
+ console.log(
6953
+ source_default.white(" Full name: ") + source_default.gray(cr.repoFullName ?? "mcp-use-managed (private)")
6954
+ );
6938
6955
  console.log(
6939
6956
  source_default.white(" Prod branch: ") + source_default.gray(cr.productionBranch)
6940
6957
  );