Skip to content

Commit e8b808f

Browse files
committed
feat: add basic sse support
1 parent eb3a7bf commit e8b808f

File tree

8 files changed

+577
-485
lines changed

8 files changed

+577
-485
lines changed

package-lock.json

+66-347
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.21",
3+
"version": "0.1.21-beta.9",
44
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
55
"type": "module",
66
"author": "Alex Andru <[email protected]>",

src/cli/project/create.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export async function createProject(name?: string) {
5858
build: "mcp-build",
5959
prepare: "npm run build",
6060
watch: "tsc --watch",
61+
start: "node dist/index.js"
6162
},
6263
dependencies: {
6364
"mcp-framework": "^0.1.8",
@@ -88,9 +89,7 @@ export async function createProject(name?: string) {
8889
8990
const server = new MCPServer();
9091
91-
server.start().catch((error) => {
92-
console.error("Server error:", error);
93-
process.exit(1);
92+
server.start();
9493
});`;
9594

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

0 commit comments

Comments
 (0)