create-mcp-use-app 0.4.9 → 0.4.10-canary.0
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -208,7 +208,7 @@ function processTemplateFile(filePath, versions, isDevelopment = false, useCanar
|
|
|
208
208
|
}
|
|
209
209
|
return processedContent;
|
|
210
210
|
}
|
|
211
|
-
program.name("create-mcp-use-app").description("Create a new MCP server project").version(packageJson.version).argument("[project-name]", "Name of the MCP server project").option("-t, --template <template>", "Template to use", "
|
|
211
|
+
program.name("create-mcp-use-app").description("Create a new MCP server project").version(packageJson.version).argument("[project-name]", "Name of the MCP server project").option("-t, --template <template>", "Template to use", "starter").option("--no-install", "Skip installing dependencies").option("--no-git", "Skip initializing a git repository").option("--dev", "Use workspace dependencies for development").option("--canary", "Use canary versions of packages").option("--yarn", "Use yarn as package manager").option("--npm", "Use npm as package manager").option("--pnpm", "Use pnpm as package manager").action(
|
|
212
212
|
async (projectName, options) => {
|
|
213
213
|
try {
|
|
214
214
|
let selectedTemplate = options.template;
|
|
@@ -569,7 +569,7 @@ async function promptForTemplate() {
|
|
|
569
569
|
type: "list",
|
|
570
570
|
name: "template",
|
|
571
571
|
message: "Select a template:",
|
|
572
|
-
default: "
|
|
572
|
+
default: "starter",
|
|
573
573
|
choices: availableTemplates.map((template2) => ({
|
|
574
574
|
name: `${template2} - ${templateDescriptions[template2] || "MCP server template"}`,
|
|
575
575
|
value: template2
|