Skip to content

Commit fdf14cb

Browse files
chore: release v0.3
1 parent e2104b2 commit fdf14cb

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "muppet",
33
"description": "Toolkit for building MCPs on Honojs",
4-
"version": "0.3.0-rc.1",
4+
"version": "0.3.0",
55
"license": "MIT",
66
"type": "module",
77
"main": "dist/index.cjs",

packages/create-muppet/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-muppet",
33
"description": "Create a Muppet application from starter templates.",
4-
"version": "0.2.0-rc.0",
4+
"version": "0.2.0",
55
"license": "MIT",
66
"bin": "./bin",
77
"files": [
@@ -40,4 +40,4 @@
4040
"giget": "1.2.3",
4141
"tsx": "^4.19.3"
4242
}
43-
}
43+
}

packages/create-muppet/src/template.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ import { downloadTemplate } from "giget";
33

44
export const TRANSPORT_LAYERS = {
55
STREAMING: {
6-
label: "The HTTP Streaming Transport from muppet",
6+
label: "The HTTP Streaming Transport from @hono/mcp",
77
value: "streaming",
88
hint: "recommended",
99
},
1010
STDIO: {
1111
label: "The Stdio Transport from @modelcontextprotocol/sdk",
1212
value: "stdio",
1313
},
14-
CLASSIC_SSE: {
14+
SSE: {
1515
label: "The SSE Transport from @modelcontextprotocol/sdk",
16-
value: "classic-sse",
16+
value: "sse",
1717
},
1818
};
1919

@@ -26,10 +26,10 @@ export const RUNTIMES_BY_TRANSPORT_LAYER: Record<
2626
(string | Option<string>)[]
2727
> = {
2828
[TRANSPORT_LAYERS.STDIO.value]: ["bun", "nodejs", "deno"],
29-
[TRANSPORT_LAYERS.CLASSIC_SSE.value]: [
29+
[TRANSPORT_LAYERS.SSE.value]: [
3030
{ label: "express.js x hono x nodejs", value: "nodejs" },
3131
],
32-
[TRANSPORT_LAYERS.STREAMING.value]: ["bun"],
32+
[TRANSPORT_LAYERS.STREAMING.value]: ["bun", "cloudflare-workers"],
3333
};
3434

3535
export const ALL_UNIQUE_TEMPLATES = Array.from(
@@ -52,9 +52,10 @@ const TEMPLATE_NAME_MAP: Record<string, string | undefined> = {
5252
"deno:stdio": "deno-stdio",
5353
"nodejs:stdio": "with-stdio",
5454
// Classic SSE Templates
55-
"nodejs:classic-sse": "with-sse-express",
55+
"nodejs:sse": "with-sse-express",
5656
// Hono Streaming Templates
5757
"bun:streaming": "with-streaming",
58+
"cloudflare-workers:streaming": "with-streaming",
5859
};
5960

6061
type DownloadOptions = {

0 commit comments

Comments
 (0)