Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit f38139a

Browse files
committed
Fix "next steps" after generation
1 parent 31a3572 commit f38139a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ async function createServer(directory: string, options: any = {}) {
7373
console.log("\nNext steps:");
7474
console.log(chalk.cyan(` cd ${directory}`));
7575
console.log(chalk.cyan(" npm install"));
76-
console.log(chalk.cyan(" npm run dev\n"));
76+
console.log(chalk.cyan(" npm run watch"));
77+
console.log(
78+
chalk.cyan(" npm link (optional, to make available globally)\n"),
79+
);
7780
} catch (error) {
7881
spinner.fail(chalk.red("Failed to create MCP server"));
7982
console.error(error);

0 commit comments

Comments
 (0)