Skip to content

Commit 1c6f9ef

Browse files
committedFeb 15, 2025
fix: wrong index created
1 parent ac3725a commit 1c6f9ef

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-framework",
3-
"version": "0.1.23",
3+
"version": "0.1.24",
44

55
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
66
"type": "module",

‎src/cli/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const program = new Command();
1111
program
1212
.name("mcp")
1313
.description("CLI for managing MCP server projects")
14-
.version("0.1.23");
14+
.version("0.1.24");
1515

1616
program
1717
.command("build")

‎src/cli/project/create.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export async function createProject(name?: string) {
6161
start: "node dist/index.js"
6262
},
6363
dependencies: {
64-
"mcp-framework": "^0.1.23",
64+
"mcp-framework": "^0.1.24",
6565
},
6666
devDependencies: {
6767
"@types/node": "^20.11.24",
@@ -89,8 +89,7 @@ export async function createProject(name?: string) {
8989
9090
const server = new MCPServer();
9191
92-
server.start();
93-
});`;
92+
server.start();`;
9493

9594
const exampleToolTs = `import { MCPTool } from "mcp-framework";
9695
import { z } from "zod";

0 commit comments

Comments
 (0)
Please sign in to comment.