Skip to content

Commit 42d668e

Browse files
committed
Some install mcp tweaks
1 parent f39dce7 commit 42d668e

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

packages/cli-v3/src/commands/install-mcp.ts

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,12 @@ export async function installMcpServer(
233233
);
234234

235235
log.info("More examples:");
236-
log.message(` • ${chalk.green('"List my Trigger.dev projects"')}`);
237-
log.message(` • ${chalk.green('"Create a new Trigger.dev project called MyApp"')}`);
238-
log.message(` • ${chalk.green('"Show me all tasks in my project"')}`);
239-
log.message(` • ${chalk.green('"Trigger the email-notification task"')}`);
236+
log.message(` • ${chalk.green('"Trigger the hello-world task"')}`);
237+
log.message(` • ${chalk.green('"Can you help me debug the prod run run_1234"')}`);
238+
log.message(` • ${chalk.green('"Deploy my trigger project to staging"')}`);
239+
log.message(` • ${chalk.green('"What trigger task handles uploading files to S3?"')}`);
240240
log.message(` • ${chalk.green('"How do I create a scheduled task in Trigger.dev?"')}`);
241-
log.message(` • ${chalk.green('"Search Trigger.dev docs for webhook examples"')}`);
241+
log.message(` • ${chalk.green('"Search Trigger.dev docs for ffmpeg examples"')}`);
242242

243243
log.info("Helpful links:");
244244
log.message(` • ${cliLink("Trigger.dev docs", "https://trigger.dev/docs")}`);
@@ -318,17 +318,13 @@ async function installMcpServerForClient(
318318
return;
319319
}
320320

321-
const clientSpinner = spinner();
322-
323-
clientSpinner.start(`Installing in ${clientName}`);
324-
325321
const scope = await resolveScopeForClient(clientName, options);
326322

327-
clientSpinner.message(`Installing in ${scope.scope} scope at ${scope.location}`);
323+
// clientSpinner.message(`Installing in ${scope.scope} scope at ${scope.location}`);
328324

329325
const configPath = await performInstallForClient(clientName, scope, options);
330326

331-
clientSpinner.stop(`Successfully installed in ${clientName} (${configPath})`);
327+
// clientSpinner.stop(`Successfully installed in ${clientName} (${configPath})`);
332328

333329
return { configPath, clientName, scope };
334330
}

0 commit comments

Comments
 (0)