AgentHubAgentHub

youtube-video-analyzer

MCP ServerMCP Registry官方收录

io.github.ludmila-omlopes/youtube-video-analyzer · v0.2.1

MCP stdio server for analyzing YouTube videos with Google Gemini

概览

youtube-video-analyzer 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "youtube-video-analyzer": {
      "command": "npx",
      "args": [
        "-y",
        "@ludylops/youtube-video-analyzer-mcp"
      ],
      "env": {
        "GEMINI_API_KEY": "<GEMINI_API_KEY>"
      }
    }
  }
}

环境变量

GEMINI_API_KEY必填secret

Google Gemini API key.

GEMINI_MODEL可选

Optional Gemini model override.

YT_DLP_PATH可选

Optional path to a yt-dlp executable.

相关资源

统一 Manifest

{
  "id": "io.github.ludmila-omlopes/youtube-video-analyzer",
  "type": "mcp-server",
  "version": "0.2.1",
  "displayName": "youtube-video-analyzer",
  "description": "MCP stdio server for analyzing YouTube videos with Google Gemini",
  "repository": {
    "url": "https://github.com/ludmila-omlopes/youtube-video-analyzer-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@ludylops/youtube-video-analyzer-mcp",
        "version": "0.2.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "GEMINI_API_KEY",
            "description": "Google Gemini API key.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "GEMINI_MODEL",
            "description": "Optional Gemini model override."
          },
          {
            "name": "YT_DLP_PATH",
            "description": "Optional path to a yt-dlp executable."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.ludmila-omlopes/youtube-video-analyzer",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.ludmila-omlopes%2Fyoutube-video-analyzer/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
youtube-video-analyzer — MCP Server 安装与配置 · AgentHub