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

@cloneviral/mcp-server

v1.2.3

Published

CloneViral MCP Server - AI video generation tools for Claude

Readme

CloneViral MCP Server

The official Model Context Protocol (MCP) server for CloneViral — AI-powered viral video generation.

Setup

  1. Generate an API key at www.cloneviral.ai/mcp-skills
  2. Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
  "mcpServers": {
    "cloneviral": {
      "command": "npx",
      "args": ["-y", "@cloneviral/mcp-server"],
      "env": {
        "CLONEVIRAL_API_KEY": "cv_your_api_key_here",
        "CLONEVIRAL_API_URL": "https://www.cloneviral.ai"
      }
    }
  }
}
  1. Restart Claude Desktop

Available Tools

| Tool | Description | |------|-------------| | cloneviral_list_videos | List your recent generated videos | | cloneviral_get_credits | Check credit balance and subscription | | cloneviral_generate_image | Generate AI images (Flux Pro, GPT Image 2, Nano Banana) | | cloneviral_generate_video | Generate AI videos via text-to-video (Sora 2, Seedance 2, Kling 3) | | cloneviral_check_video_status | Poll generation task status by prediction ID | | cloneviral_analyze_video | Analyze a source video to extract style & structure | | cloneviral_build_remix_variants | Build remix variant prompts from a video analysis | | cloneviral_translate_video | Translate and AI-dub a video into another language | | cloneviral_get_characters | List your saved AI characters |

Remix Workflow

To clone and remix a viral video, use these tools in sequence:

  1. cloneviral_analyze_video — Pass the TikTok/YouTube URL to analyze its style
  2. cloneviral_build_remix_variants — Generate N variant prompts from the analysis
  3. cloneviral_generate_video — Generate each variant as a new video
  4. cloneviral_check_video_status — Poll until generation is complete

Video Translation Workflow

  1. cloneviral_translate_video — Submit source URL + target language → returns a job ID
  2. Check job status at GET /api/video-translate/jobs/{jobId}

Development

npm install
npm run dev    # Run with ts-node
npm run build  # Compile to dist/
npm start      # Run compiled server

License

MIT