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

@widecast/mcp-server

v0.1.3

Published

Model Context Protocol (MCP) server for WideCast.ai — exposes WideCast tools to Claude Desktop, Claude Code, Cursor, Windsurf, OpenHands, and any other MCP-compatible host.

Readme

@widecast/mcp-server

Model Context Protocol (MCP) server for WideCast.ai. Drop WideCast's video-generation tools into Claude Desktop, Claude Code, Cursor, Windsurf, or any MCP-compatible host so your AI can make videos from a conversation.

Pair it with the WideCast authoring Skills (video / blog / social) — the Skill teaches the model to write a great script; this server turns it into a real video.

Tools exposed:

  • widecast_create_video — create a video from a script (source=text), an idea (source=idea), an article (source=blog), or a YouTube/TikTok/Facebook link (source=video_url / audio_url). Choose output_type = scene / video / text.
  • widecast_get_status — poll a video until completed; returns review_url / video_url.
  • widecast_export_video — render the final MP4 for a scene video after review.

Install

Not yet on npm — run it from this repo (one time):

cd widecast/mcp-server
npm install            # fetches @modelcontextprotocol/sdk; dist/index.js is prebuilt
node dist/index.js     # quick check — should print "[widecast-mcp] vX ready"; Ctrl-C to stop

Then point your host's config at the absolute path of dist/index.js (below). (After we publish to npm, npx -y @widecast/mcp-server will work instead.)

The server is self-contained — it calls the WideCast REST API directly, so the only dependency is @modelcontextprotocol/sdk. To rebuild after editing src/: npm run build.

Configure

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows), then restart Claude:

{
  "mcpServers": {
    "widecast": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/widecast/mcp-server/dist/index.js"],
      "env": { "WIDECAST_API_KEY": "wc_live_REPLACE_ME" }
    }
  }
}

Cursor — ~/.cursor/mcp.json

{
  "mcpServers": {
    "widecast": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/widecast/mcp-server/dist/index.js"],
      "env": { "WIDECAST_API_KEY": "wc_live_REPLACE_ME" }
    }
  }
}

Claude Code

claude mcp add widecast node /ABSOLUTE/PATH/TO/widecast/mcp-server/dist/index.js --env WIDECAST_API_KEY=wc_live_REPLACE_ME

Use in conversation

After restarting your host:

You: "Make me a short video about why California parents should let their teen get a driver's license at 16."

Agent: writes a script (best with the WideCast video-script Skill installed) → calls widecast_create_video (source=text, output_type=video) → polls widecast_get_status until completed → shares the video_url.

Environment variables

| Var | Default | Purpose | |---|---|---| | WIDECAST_API_KEY | — | Your wc_live_* API key (create one in your WideCast dashboard) | | WIDECAST_BASE_URL | https://widecast.ai/app/dashboard2 | Override for staging / self-hosted |

Build from source

npm install && npm run build && node dist/index.js

License

Apache-2.0.