File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const program = new Command();
1111program
1212 . name ( "mcp" )
1313 . description ( "CLI for managing MCP server projects" )
14- . version ( "0.1.23 " ) ;
14+ . version ( "0.1.24 " ) ;
1515
1616program
1717 . command ( "build" )
Original file line number Diff line number Diff 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
9090const server = new MCPServer();
9191
92- server.start();
93- });` ;
92+ server.start();` ;
9493
9594 const exampleToolTs = `import { MCPTool } from "mcp-framework";
9695import { z } from "zod";
You can’t perform that action at this time.
0 commit comments