Skip to content

fix: wrong index created #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mcp-framework",
"version": "0.1.23",
"version": "0.1.24",

"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const program = new Command();
program
.name("mcp")
.description("CLI for managing MCP server projects")
.version("0.1.23");
.version("0.1.24");

program
.command("build")
Expand Down
5 changes: 2 additions & 3 deletions src/cli/project/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export async function createProject(name?: string) {
start: "node dist/index.js"
},
dependencies: {
"mcp-framework": "^0.1.23",
"mcp-framework": "^0.1.24",
},
devDependencies: {
"@types/node": "^20.11.24",
Expand Down Expand Up @@ -89,8 +89,7 @@ export async function createProject(name?: string) {

const server = new MCPServer();

server.start();
});`;
server.start();`;

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