1. Conduid
  2. Content
  3. Youtube MCP
MCP server · Content

Youtube MCP

MCP server for extracting YouTube video transcripts and metadata

Unclaimed MIT last commit 7 months ago content
53Fair

Scored 3 months ago · breakdown

About Youtube MCP

Youtube MCP is an MCP server published by kzmshx in the Content category: mCP server for extracting YouTube video transcripts and metadata. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx youtube-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Youtube MCP

Powered by Claude · Grounded in docs

I know everything about Youtube MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

kzmshx-youtube-mcp

An MCP server for extracting YouTube video transcripts and metadata.

Configuration

{
  "mcpServers": {
    "youtube": {
      "command": "uvx",
      "args": ["kzmshx-youtube-mcp"]
    }
  }
}

Installation (Optional)

If you prefer to install globally:

pip install kzmshx-youtube-mcp
# or
uv tool install kzmshx-youtube-mcp

Tools

get_transcript

Get transcript text from a YouTube video.

Parameter Type Description
url string YouTube URL or video ID
language string Language code (default: auto)
with_timestamps bool Include timestamps (default: false)

Example:

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

// Output
{
  "video_id": "dQw4w9WgXcQ",
  "language": "en",
  "transcript": "We're no strangers to love\nYou know the rules and so do I..."
}

get_video_info

Get metadata from a YouTube video.

Parameter Type Description
url string YouTube URL or video ID

Example:

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

// Output
{
  "id": "dQw4w9WgXcQ",
  "title": "Rick Astley - Never Gonna Give You Up",
  "description": "...",
  "duration": 213,
  "channel": "Rick Astley",
  "upload_date": "2009-10-25",
  "view_count": 1500000000,
  "available_languages": ["en", "ja", "es", "fr"]
}

License

MIT

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Youtube MCP

How do I install Youtube MCP?

Run npx youtube-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Youtube MCP safe to use with an AI agent?

Its trust score is 53 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Youtube MCP still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.