@@ -5,10 +5,11 @@ import prompts from "prompts";
5
5
import { generateReadme } from "../templates/readme.js" ;
6
6
import { execa } from "execa" ;
7
7
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 } ) {
9
9
let projectName : string ;
10
- // Default install to true if not specified
10
+ // Default install and example to true if not specified
11
11
const shouldInstall = options ?. install !== false ;
12
+ const shouldCreateExample = options ?. example !== false ;
12
13
13
14
if ( ! name ) {
14
15
const response = await prompts ( [
@@ -147,14 +148,21 @@ class ExampleTool extends MCPTool<ExampleInput> {
147
148
148
149
export default ExampleTool;` ;
149
150
150
- console . log ( "Creating project files..." ) ;
151
- await Promise . all ( [
151
+ // Prepare the files to write
152
+ const filesToWrite = [
152
153
writeFile ( join ( projectDir , "package.json" ) , JSON . stringify ( packageJson , null , 2 ) ) ,
153
154
writeFile ( join ( projectDir , "tsconfig.json" ) , JSON . stringify ( tsconfig , null , 2 ) ) ,
154
155
writeFile ( join ( projectDir , "README.md" ) , generateReadme ( projectName ) ) ,
155
156
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 ) ;
158
166
159
167
process . chdir ( projectDir ) ;
160
168
0 commit comments