@kya-os/create-mcpi-app 1.2.34 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/helpers/fetch-cloudflare-mcpi-template.d.ts +2 -3
- package/dist/helpers/fetch-cloudflare-mcpi-template.d.ts.map +1 -1
- package/dist/helpers/fetch-cloudflare-mcpi-template.js +191 -188
- package/dist/helpers/fetch-cloudflare-mcpi-template.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ Choose where to deploy your owned agent:
|
|
|
44
44
|
|
|
45
45
|
- `-p, --platform <platform>` - Target deployment platform (default: "standalone")
|
|
46
46
|
- `standalone` - Self-contained agent server
|
|
47
|
+
- `cloudflare` - Cloudflare Workers with Durable Objects and SSE support
|
|
47
48
|
- `vercel` - Vercel edge runtime with KV identity storage
|
|
48
49
|
- `lambda` - AWS Lambda with DynamoDB identity persistence
|
|
49
50
|
- `nextjs` - Next.js API routes with integrated identity
|
|
@@ -63,6 +64,9 @@ Choose where to deploy your owned agent:
|
|
|
63
64
|
# Create a standalone agent you can own
|
|
64
65
|
npx create-mcpi-app my-personal-agent
|
|
65
66
|
|
|
67
|
+
# Create a Cloudflare Workers MCP server
|
|
68
|
+
npx create-mcpi-app my-cloudflare-agent --platform cloudflare
|
|
69
|
+
|
|
66
70
|
# Quick creation without prompts
|
|
67
71
|
npx create-mcpi-app my-quick-agent --yes
|
|
68
72
|
```
|
|
@@ -91,6 +95,15 @@ my-agent/
|
|
|
91
95
|
|
|
92
96
|
## Platform-Specific Features
|
|
93
97
|
|
|
98
|
+
### Cloudflare - Edge MCP Servers
|
|
99
|
+
|
|
100
|
+
- **Global Edge Network**: Deploy MCP servers to 300+ cities worldwide
|
|
101
|
+
- **SSE & HTTP Streaming**: Full MCP protocol support with Server-Sent Events
|
|
102
|
+
- **Durable Objects**: Built-in state management for MCP sessions
|
|
103
|
+
- **Zero Cold Starts**: Instant response times with Durable Objects
|
|
104
|
+
- **KV Storage**: Efficient nonce caching for security
|
|
105
|
+
- **WebSockets**: Real-time bidirectional communication support
|
|
106
|
+
|
|
94
107
|
### Vercel - Edge Identity
|
|
95
108
|
|
|
96
109
|
- **Edge Runtime**: Fast cold starts with cached identity context
|