Skip to content

Commit f63f954

Browse files
committed
Fix template name type, publish 0.1.2
1 parent 3c39808 commit f63f954

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/mcp-init/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-init",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Create a new MCP server with one command - batteries included.",
55
"author": "stephencme",
66
"license": "UNLICENSED",

packages/mcp-init/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ async function run() {
7777
printCreatingServer(resolvedProjectPath);
7878

7979
// Determine which template to use (default or custom)
80-
const templateName = options.template || "mcpi-templates-default";
80+
const templateName = options.template || "mcpi-template-default";
8181
printUsingTemplate(templateName);
8282

8383
// Copy template contents

0 commit comments

Comments
 (0)