File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mcp-framework" ,
3
- "version" : " 0.1.23 " ,
3
+ "version" : " 0.1.24 " ,
4
4
5
5
"description" : " Framework for building Model Context Protocol (MCP) servers in Typescript" ,
6
6
"type" : " module" ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const program = new Command();
11
11
program
12
12
. name ( "mcp" )
13
13
. description ( "CLI for managing MCP server projects" )
14
- . version ( "0.1.23 " ) ;
14
+ . version ( "0.1.24 " ) ;
15
15
16
16
program
17
17
. command ( "build" )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export async function createProject(name?: string) {
61
61
start : "node dist/index.js"
62
62
} ,
63
63
dependencies : {
64
- "mcp-framework" : "^0.1.23 " ,
64
+ "mcp-framework" : "^0.1.24 " ,
65
65
} ,
66
66
devDependencies : {
67
67
"@types/node" : "^20.11.24" ,
@@ -89,8 +89,7 @@ export async function createProject(name?: string) {
89
89
90
90
const server = new MCPServer();
91
91
92
- server.start();
93
- });` ;
92
+ server.start();` ;
94
93
95
94
const exampleToolTs = `import { MCPTool } from "mcp-framework";
96
95
import { z } from "zod";
You can’t perform that action at this time.
0 commit comments