Youtube Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Youtube Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A production-quality Model Context Protocol (MCP) server that empowers LLMs to seamlessly interact with YouTube videos. This server exposes tools to fetch video transcripts, actively summarize videos, and accurately answer questions based on the video context.
tenacity.youtube_mcp_server/
├── server.py # Initializes MCP server and exposes tool endpoints
├── tools.py # The core logic mapping transcript APIs to caching and chunking
├── utils.py # URL extraction, text cleaning, and chunking utility functions
├── llm.py # The LLM engine wrapper managing API requests and retries
├── requirements.txt # Project pip dependencies
└── README.md # Documentation python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate pip install -r requirements.txtYou must set up your OpenAI API key for summarize_video and ask_video to function.
export OPENAI_API_KEY="your-api-key-here"
# Optional: Set a specific model (defaults to gpt-4o-mini)
export LLM_MODEL="gpt-4o"Because this is an MCP server, it is meant to communicate via standard input/output (stdio) with an MCP Client (such as Claude Desktop, Cursor, or an intelligent agent).
You can run it manually to see it start to listen on stdio:
python server.pyTo use this server inside Claude Desktop, add it to your claude_desktop_config.json:
{
"mcpServers": {
"youtube_server": {
"command": "/path/to/your/venv/bin/python",
"args": ["/path/to/youtube_mcp_server/server.py"],
"env": {
"OPENAI_API_KEY": "your-api-key-here"
}
}
}
}Once connected, your LLM context will see three available tools:
1. `get_transcript(video_url="https://youtube.com/watch?v=XXXX")`
2. `summarize_video(video_url="https://youtu.be/XXXX")`
3. `ask_video(video_url="https://youtube.com/watch?v=XXXX", question="What was the score they mentioned?")`
Summarize Video Response:
"The video discusses the release of the new MacBook Pro M4. Key points include: 1. Performance upgrades with the M4 chip over the previous generation. 2. The introduction of the new Nano-texture display. 3. Improvements in battery life averaging 20 hours. The presenter concludes that it is a solid upgrade for M1 users, but M3 users can hold off."
Ask Video Response:
"Based on the video transcript, the presenter stated that the starting price for the base model is $1,599."
pip install -r requirements.txt.OPENAI_API_KEY is not provided in the environment variables where the MCP server is initialized, the server's summarise and QA tool executions will yield an error message indicating the problem.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.