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

@novemberde/mcp-youtube

v0.9.6

Published

YouTube downloader for MCP

Readme

YouTube MCP Server

This project connects YouTube video processing capabilities to Claude AI via the Model Context Protocol. It uses yt-dlp for downloading subtitles and ffmpeg for screenshot extraction. Users can ask Claude to summarize YouTube videos by providing the URL.

System Architecture Diagram

graph TD
    A[User] --> B[Claude AI]
    B --> D[mcp-youtube]
    D --> E[yt-dlp Subtitles]
    D --> F[ffmpeg Screenshots]
    D --> G[Temporary Storage]
    G --> H[Auto-Cleanup]

    style A fill:#FFE4B5,stroke:#333
    style B fill:#98FB98,stroke:#333
    style C fill:#ADD8E6,stroke:#333
    style D fill:#D0ECE7,stroke:#333
    style E fill:#FFB6C1,stroke:#333
    style F fill:#DDA0DD,stroke:#333
    style G fill:#FFFACD,stroke:#333
    style H fill:#FFD700,stroke:#333

    subgraph MCP
        D --> E
        D --> F
        D --> G
    end

    subgraph Temporary Storage
        G --> H
    end

Getting Started

Prerequisites

  • yt-dlp and ffmpeg installed (via Homebrew, WinGet, or other package managers)
  • Node.js and npm installed

Installation

  1. Install the MCP server:

    npm install -g @novemberde/mcp-youtube
  2. Configure Claude to use the MCP server: Add the following to your claude_desktop_config.json:

    {
      "mcpServers": {
        "mcp-youtube": {
          "command": "npx",
          "args": ["@novemberde/mcp-youtube"]
        }
      }
    }

Available Tools

1. download_youtube_url

Downloads and extracts subtitles from a YouTube video.

Parameters:

  • url (required): YouTube video URL

Example:

{
  "url": "https://www.youtube.com/watch?v=example"
}

2. search_youtube_videos

Searches YouTube videos based on a query.

Parameters:

  • query (required): Search term
  • max_results (optional, default=10): Maximum number of results

Example:

{
  "query": "how to make pizza",
  "max_results": 5
}

Returns:

  • Video title, URL, description, duration, view count, uploader name

3. get_screenshots

Captures screenshots from specific timestamps of a YouTube video.

Parameters:

  • url (required): YouTube video URL
  • timestamps (required): Array of timestamps in HH:MM:SS format

Example:

{
  "url": "https://www.youtube.com/watch?v=example",
  "timestamps": ["00:01:30", "00:05:45"]
}

Returns:

  • File paths to saved screenshots

Notes

  • Ensure yt-dlp and ffmpeg are installed globally.
  • The server uses temporary directories for processing, which are automatically cleaned up.
  • Error handling provides descriptive messages for troubleshooting.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/your-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin feature/your-feature)
  5. Create a new Pull Request

License

This project is licensed under the MIT License - see the COPYING file for details.