YouTube MCP Server
Provides distraction-free access to YouTube by allowing AI assistants to retrieve subscribed channels, latest videos, and transcripts without algorithmic recommendations. It enables searching within subscriptions and direct reading of video content through simple browser cookie authentication.
README
YouTube MCP Server
Distraction-free YouTube for AI assistants. Get your subscribed channels, latest videos, and transcripts without algorithm recommendations.
Features
- No Distractions: Lists only your subscribed content
- Direct Links: Every video has a clickable link
- Read Mode: Get transcripts to read instead of watching
- No OAuth: Uses browser cookies - much simpler
- Caching: Fast responses for repeated queries
Available Tools
| Tool | Description |
|---|---|
get_subscribed_channels |
List all your subscribed channels |
get_latest_videos |
Get latest videos from subscriptions with direct links |
get_video_transcript |
Get transcript of a video (read instead of watching) |
search_subscribed_channels |
Search within your subscriptions |
get_channel_videos |
Get videos from a specific channel |
setup_youtube_auth |
Get authentication setup instructions |
Setup
1. Install Dependencies
cd /home/naresh/Projects/youtube-mcp-python
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
2. Export YouTube Cookies
Using Chrome:
yt-dlp --cookies-from-browser chrome --cookies auth/cookies.txt
Using Firefox:
yt-dlp --cookies-from-browser firefox --cookies auth/cookies.txt
Note: You must be logged into YouTube in your browser first.
3. Add to OpenCode
Add to ~/.config/opencode/opencode.jsonc:
{
"mcp": {
"youtube": {
"type": "local",
"command": ["/home/naresh/Projects/youtube-mcp-python/.venv/bin/python", "/home/naresh/Projects/youtube-mcp-python/main.py"],
"enabled": true
}
}
}
Usage Examples
Get latest videos:
Use get_latest_videos with max_results=15
Read a video transcript:
Use get_video_transcript with video_id="dQw4w9WgXcQ"
Search your subscriptions:
Use search_subscribed_channels with query="python tutorial"
Get a specific channel's videos:
Use get_channel_videos with channel_id="UCwX6rVkOq0"
Project Structure
youtube-mcp-python/
├── main.py # Entry point
├── mcp_server.py # MCP tool definitions
├── config.py # Configuration
├── requirements.txt # Dependencies
├── opencode-mcp-config.json
├── auth/
│ └── __init__.py # Cookie validation
├── services/
│ ├── __init__.py
│ ├── subscriptions_service.py
│ ├── videos_service.py
│ ├── transcripts_service.py
│ └── search_service.py
├── utils/
│ ├── __init__.py
│ ├── ytdlp_wrapper.py
│ ├── cache.py
│ └── retry.py
└── data/
└── cache/ # Cached data
Troubleshooting
"Cookies not found" → Run the yt-dlp cookie export command
"401 Unauthorized" → Re-export cookies (they expire when you log out)
"No subscriptions found" → Make sure you're subscribed to channels on YouTube
Credits
Built with:
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.