npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-multicast

v0.4.4

Published

Create a Multicast MCP gateway — one command to scaffold, configure, and deploy your parallel MCP server.

Readme

create-multicast

One command to set up Multicast — an MCP gateway that gives Claude.ai access to all your MCP servers through a single integration, with parallel execution.

Usage

npx create-multicast

What It Does

  1. Scans your machine for existing MCP configurations

    • Claude Code (~/.claude.json)
    • Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json)
    • Cursor (~/.cursor/mcp.json)
    • VS Code (.vscode/mcp.json)
  2. Classifies your servers

    • HTTP servers (compatible with Multicast)
    • stdio servers (local only, not compatible)
  3. Lets you select which servers to register

  4. Auto-detects credentials from existing configs

    • Authorization headers
    • API keys, tokens, secrets from env vars
  5. Deploys to Cloudflare Workers

    • Creates D1 database for tool discovery cache
    • Sets encrypted env vars for server credentials
    • Deploys the Worker
  6. Outputs the URL to add to Claude.ai

Example

$ npx create-multicast

  create-multicast

  MCP gateway for Claude.ai — one integration, all your servers, parallel execution.
  Runs on Cloudflare Workers (free tier). Costs $0/month.

  Scanning for existing MCP configurations...

  Found 5 MCP servers:

  ✓ context-hub     https://context-hub.user.workers.dev    [HTTP]
  ✓ supabase-mcp    https://supabase-mcp.example.com        [HTTP]
  ✗ filesystem      command: npx @mcp/filesystem             [stdio — skipped]
  ✗ git             command: npx @mcp/git                    [stdio — skipped]
  ✓ github-mcp      https://github-mcp.example.com           [HTTP]

  2 stdio servers skipped — they run locally and can't be called from a cloud worker.

  Select servers to register with Multicast:
  ◼ context-hub
  ◼ supabase-mcp
  ◼ github-mcp

  ...deploying...

  Deployed! https://multicast.user.workers.dev/mcp

  Add to Claude.ai:
  → Settings → Integrations → Add MCP Server
  → Paste the URL above

What is Multicast?

Multicast is a free, open-source MCP gateway on Cloudflare Workers.

The problem: Claude.ai requires a separate integration for each MCP server. 5 servers = 5 integrations, 5 OAuth setups, and sequential tool execution.

The solution: Add Multicast once. It connects to all your MCP servers and calls them in parallel.

  • One integration instead of many
  • Parallel execution instead of sequential
  • Unified tool discovery
  • $0/month on Cloudflare Workers free tier

How Credentials Work

  • You deploy your own Multicast instance on your Cloudflare account
  • Server URLs and auth tokens are stored as encrypted environment variables
  • Credentials never leave your infrastructure
  • No shared servers, no central authority

Adding Servers After Setup

# Add a new server
npx wrangler secret put MCP_SERVER_NEWSERVICE
npx wrangler secret put MCP_AUTH_NEWSERVICE   # if auth needed
npx wrangler deploy

Requirements

  • Node.js 18+
  • Free Cloudflare account
  • At least one HTTP-accessible MCP server

stdio vs HTTP

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.

Links

License

MIT