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

@ugccopilot/mcp

v0.1.12

Published

Official MCP (Model Context Protocol) server for UGC Copilot. Generate UGC-style video ads end-to-end (script, persona, image, video, overlay) from Claude Desktop, Cursor, Cline, Zed, or any MCP-compatible agent. Wraps the public REST API with 13 tools ac

Readme

@ugccopilot/mcp

Official MCP (Model Context Protocol) server for UGC Copilot. Generate UGC-style video ads end-to-end from Claude Desktop, Cursor, Cline, Zed, or any MCP-compatible agent.

12 tools across free + authenticated tiers wrapping the public REST API. Render with Sora 2, Veo 3.1, Kling 3.0, or Seedance 2.0. Pay-as-you-go — no subscription required.

Quick start

Claude Desktop

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

{
  "mcpServers": {
    "ugc-copilot": {
      "command": "npx",
      "args": ["-y", "@ugccopilot/mcp@latest"],
      "env": {
        "UGC_COPILOT_API_KEY": "ugc_live_..."
      }
    }
  }
}

Restart Claude Desktop. Twelve tools will appear in the tools list.

Cursor

Add to .cursor/mcp.json in your project (or to user settings):

{
  "mcpServers": {
    "ugc-copilot": {
      "command": "npx",
      "args": ["-y", "@ugccopilot/mcp@latest"],
      "env": {
        "UGC_COPILOT_API_KEY": "ugc_live_..."
      }
    }
  }
}

Cline / Continue / Zed

Same pattern — point your MCP client at npx -y @ugccopilot/mcp@latest with the env var set.

Forcing a version refresh

Claude Desktop spawns the MCP server once per launch and npx caches resolved packages in ~/.npm/_npx/. After we publish a new version, your running session keeps using the old one until the process restarts and npx re-resolves.

If a Claude Desktop restart isn't picking up a newer version:

rm -rf ~/.npm/_npx
# Then quit Claude Desktop fully (⌘Q on macOS) and relaunch.

Pinning @latest in your config (as above) makes npx more aggressive about checking the registry on each cold start. If you'd rather lock to a specific version for stability, replace @latest with the exact version, e.g. @ugccopilot/[email protected].

Tools

Free tier (no API key required)

| Tool | Purpose | Limit | |---|---|---| | analyze_trends | Industry trend analysis with viral hook ideas | 3/day per IP | | generate_hooks | 10 scroll-stopping hooks for a product | 5/day per IP | | generate_persona_preview | Creator persona preview (name, pillars, voice) | 3/day per IP | | generate_script_preview | 3-hook, 3-scene preview script | 3/day per IP |

Authenticated tier (requires UGC_COPILOT_API_KEY)

| Tool | Purpose | Cost | |---|---|---| | analyze_market | Trending products + market analysis (composite) | 1 credit | | generate_script | Full viral script with platform variations | 1 credit | | generate_image | Scene image from a visual prompt | 1 std / 2 hq | | render_video | Start an async video render | 9-305 credits | | check_video_status | Single-shot poll | 0 | | wait_for_video | Poll with backoff up to ~50s | 0 | | fetch_video | Get the rendered MP4 URL | 0 | | apply_text_overlay | Burn captions/CTAs onto a video | 1/call |

Get an API key

Sign up at https://ugccopilot.ai/signup and generate a key from Profile → API Keys. The key has the ugc_live_ prefix.

You only need a key for the authenticated tier — the four free tools work without one.

Credit pricing

PAYG packs (no subscription required): 200 credits / $25, 500 / $50, 2,500 / $200, 10,000 / $700. Subscriptions include monthly bundled credits and higher concurrency caps. See https://ugccopilot.ai/pricing.

Video render costs vary by engine, quality, and duration:

  • Sora 2: 18 std / 65 hq (8s baseline, scales by duration)
  • Veo 3.1: 40 std / 130 hq (fixed cost)
  • Kling 3.0: 32 std / 50 hq / 130 4k (6.4s baseline) — 4K is native, no upscaling
  • Seedance 2.0: 18 std / 35 hq (4s baseline)

Long-running video renders

render_video returns an operationName immediately. To get the final MP4:

  1. Call wait_for_video — polls up to ~50s (stays inside the MCP tool window).
  2. If still pending, the agent gets back the operationName and a hint to call check_video_status again in 30s.
  3. When done, call fetch_video to get the signed MP4 URL.

Errors

Errors include actionable hints:

  • 402 insufficient-credits → buy a credit pack at https://ugccopilot.ai/pricing/#packs
  • 429 rate-limited (free tier) → set UGC_COPILOT_API_KEY for the higher-volume authenticated tier
  • 400 validation → details field describes which input was rejected
  • 5xx / network → automatic retry with backoff, then surface

Source & support

License

MIT