create-multicast 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +118 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,118 @@
1
+ # create-multicast
2
+
3
+ One command to set up [Multicast](https://github.com/mayankbohra/multicast) — an MCP gateway that gives Claude.ai access to all your MCP servers through a single integration, with parallel execution.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npx create-multicast
9
+ ```
10
+
11
+ ## What It Does
12
+
13
+ 1. **Scans your machine** for existing MCP configurations
14
+ - Claude Code (`~/.claude.json`)
15
+ - Claude Desktop (`~/Library/Application Support/Claude/claude_desktop_config.json`)
16
+ - Cursor (`~/.cursor/mcp.json`)
17
+ - VS Code (`.vscode/mcp.json`)
18
+
19
+ 2. **Classifies your servers**
20
+ - HTTP servers (compatible with Multicast)
21
+ - stdio servers (local only, not compatible)
22
+
23
+ 3. **Lets you select** which servers to register
24
+
25
+ 4. **Auto-detects credentials** from existing configs
26
+ - Authorization headers
27
+ - API keys, tokens, secrets from env vars
28
+
29
+ 5. **Deploys to Cloudflare Workers**
30
+ - Creates D1 database for tool discovery cache
31
+ - Sets encrypted env vars for server credentials
32
+ - Deploys the Worker
33
+
34
+ 6. **Outputs the URL** to add to Claude.ai
35
+
36
+ ## Example
37
+
38
+ ```
39
+ $ npx create-multicast
40
+
41
+ create-multicast
42
+
43
+ MCP gateway for Claude.ai — one integration, all your servers, parallel execution.
44
+ Runs on Cloudflare Workers (free tier). Costs $0/month.
45
+
46
+ Scanning for existing MCP configurations...
47
+
48
+ Found 5 MCP servers:
49
+
50
+ ✓ context-hub https://context-hub.user.workers.dev [HTTP]
51
+ ✓ supabase-mcp https://supabase-mcp.example.com [HTTP]
52
+ ✗ filesystem command: npx @mcp/filesystem [stdio — skipped]
53
+ ✗ git command: npx @mcp/git [stdio — skipped]
54
+ ✓ github-mcp https://github-mcp.example.com [HTTP]
55
+
56
+ 2 stdio servers skipped — they run locally and can't be called from a cloud worker.
57
+
58
+ Select servers to register with Multicast:
59
+ ◼ context-hub
60
+ ◼ supabase-mcp
61
+ ◼ github-mcp
62
+
63
+ ...deploying...
64
+
65
+ Deployed! https://multicast.user.workers.dev/mcp
66
+
67
+ Add to Claude.ai:
68
+ → Settings → Integrations → Add MCP Server
69
+ → Paste the URL above
70
+ ```
71
+
72
+ ## What is Multicast?
73
+
74
+ Multicast is a free, open-source MCP gateway on Cloudflare Workers.
75
+
76
+ **The problem:** Claude.ai requires a separate integration for each MCP server. 5 servers = 5 integrations, 5 OAuth setups, and sequential tool execution.
77
+
78
+ **The solution:** Add Multicast once. It connects to all your MCP servers and calls them in parallel.
79
+
80
+ - One integration instead of many
81
+ - Parallel execution instead of sequential
82
+ - Unified tool discovery
83
+ - $0/month on Cloudflare Workers free tier
84
+
85
+ ## How Credentials Work
86
+
87
+ - You deploy your **own** Multicast instance on your Cloudflare account
88
+ - Server URLs and auth tokens are stored as **encrypted environment variables**
89
+ - Credentials never leave your infrastructure
90
+ - No shared servers, no central authority
91
+
92
+ ## Adding Servers After Setup
93
+
94
+ ```bash
95
+ # Add a new server
96
+ npx wrangler secret put MCP_SERVER_NEWSERVICE
97
+ npx wrangler secret put MCP_AUTH_NEWSERVICE # if auth needed
98
+ npx wrangler deploy
99
+ ```
100
+
101
+ ## Requirements
102
+
103
+ - Node.js 18+
104
+ - Free Cloudflare account
105
+ - At least one HTTP-accessible MCP server
106
+
107
+ ## stdio vs HTTP
108
+
109
+ Multicast runs in the cloud. It can only call MCP servers with HTTP endpoints. Local stdio servers (filesystem, git, sqlite) are detected but skipped with an explanation.
110
+
111
+ ## Links
112
+
113
+ - [GitHub](https://github.com/mayankbohra/multicast)
114
+ - [Cloudflare Workers](https://workers.cloudflare.com/)
115
+
116
+ ## License
117
+
118
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-multicast",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Create a Multicast MCP gateway — one command to scaffold, configure, and deploy your parallel MCP server.",
5
5
  "type": "module",
6
6
  "bin": "./dist/cli.js",