Skip to content

Commit df733f9

Browse files
authored
Merge pull request #56 from QuantGeekDev/feature/skip-example-tool-cli
feat: add skip example option to cli
2 parents d77e6e9 + c02809f commit df733f9

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

src/cli/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ program
2626
.option("--cors", "enable CORS with wildcard (*) access")
2727
.option("--port <number>", "specify HTTP port (only valid with --http)", (val) => parseInt(val, 10))
2828
.option("--no-install", "skip npm install and build steps")
29+
.option("--no-example", "skip creating example tool")
2930
.action(createProject);
3031

3132
program

src/cli/project/create.ts

+14-6
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ import prompts from "prompts";
55
import { generateReadme } from "../templates/readme.js";
66
import { execa } from "execa";
77

8-
export async function createProject(name?: string, options?: { http?: boolean, cors?: boolean, port?: number, install?: boolean }) {
8+
export async function createProject(name?: string, options?: { http?: boolean, cors?: boolean, port?: number, install?: boolean, example?: boolean }) {
99
let projectName: string;
10-
// Default install to true if not specified
10+
// Default install and example to true if not specified
1111
const shouldInstall = options?.install !== false;
12+
const shouldCreateExample = options?.example !== false;
1213

1314
if (!name) {
1415
const response = await prompts([
@@ -147,14 +148,21 @@ class ExampleTool extends MCPTool<ExampleInput> {
147148
148149
export default ExampleTool;`;
149150

150-
console.log("Creating project files...");
151-
await Promise.all([
151+
// Prepare the files to write
152+
const filesToWrite = [
152153
writeFile(join(projectDir, "package.json"), JSON.stringify(packageJson, null, 2)),
153154
writeFile(join(projectDir, "tsconfig.json"), JSON.stringify(tsconfig, null, 2)),
154155
writeFile(join(projectDir, "README.md"), generateReadme(projectName)),
155156
writeFile(join(srcDir, "index.ts"), indexTs),
156-
writeFile(join(toolsDir, "ExampleTool.ts"), exampleToolTs),
157-
]);
157+
];
158+
159+
// Conditionally add the example tool
160+
if (shouldCreateExample) {
161+
filesToWrite.push(writeFile(join(toolsDir, "ExampleTool.ts"), exampleToolTs));
162+
}
163+
164+
console.log("Creating project files...");
165+
await Promise.all(filesToWrite);
158166

159167
process.chdir(projectDir);
160168

0 commit comments

Comments
 (0)