YouTube MCP Server
Search YouTube videos, retrieve transcripts, and perform semantic search over video content.
YouTube MCP Server
A Model Context Protocol (MCP) server that provides tools for searching YouTube videos, retrieving transcripts, and performing semantic search over video content.
Support Us
If you find this project helpful and would like to support future projects, consider buying us a coffee! Your support helps us continue building innovative AI solutions.
Your contributions go a long way in fueling our passion for creating intelligent and user-friendly applications.
Table of Contents
- YouTube MCP Server
- Features
- Prerequisites
- Installation
- Running the Server
- Available Tools
- Using with MCP Clients
- Debugging
- Contributing
- License
Features
- Search YouTube videos without using the official API
- Retrieve video transcripts
- Store video information and transcripts in a vector database
- Perform semantic search over stored video transcripts
Prerequisites
- Python 3.8+
- Google API key for embeddings
- uv package manager
Installation
-
Clone this repository
-
Create and activate a virtual environment using uv:
uv venv
# On Windows:
.venv\Scripts\activate
# On Unix/MacOS:
source .venv/bin/activate
- Install dependencies using uv:
uv pip install -r requirements.txt
- Create a
.envfile with your Google API key:
GOOGLE_API_KEY=your_api_key_here
Running the Server
There are two ways to run the MCP server:
1. Direct Method
To start the MCP server directly:
uv run python server.py
2. Configure for Claude.app
Add to your Claude settings without using any package manager this works for windows:
"mcpServers": {
"youtube": {
"command": "C:\\Path\\To\\Your\\Project\\.venv\\Scripts\\python.exe",
"args": ["C:\\Path\\To\\Your\\Project\\server.py"],
"env": {
"GOOGLE_API_KEY": "your_api_key_here"
}
}
}
Using Uv package manager this works for windows:
"mcpServers": {
"youtube": {
"command": "uv",
"args": ["--directory", "C:\\Path\\To\\Your\\Project", "run", "server.py"],
"env": {
"GOOGLE_API_KEY": "your_api_key_here"
}
}
}
Available Tools
The server provides the following tools:
-
search-youtube: Search for YouTube videos based on a query- Parameters:
- query: Search query string
- max_results: Maximum number of results to return (default: 5)
- Parameters:
-
get-transcript: Get the transcript of a YouTube video- Parameters:
- video_url: URL of the YouTube video
- Parameters:
-
store-video-info: Store video information and transcript in the vector database- Parameters:
- video_url: URL of the YouTube video
- metadata: Optional metadata about the video
- Parameters:
-
search-transcripts: Search stored video transcripts using semantic search- Parameters:
- query: Search query
- limit: Maximum number of results to return (default: 3)
- Parameters:
Using with MCP Clients
This server can be used with any MCP-compatible client, such as Claude Desktop App. The tools will be automatically discovered and made available to the client.
Example Usage
- Start the server using one of the methods described above
- Open Claude Desktop App
- Look for the hammer icon to verify that the YouTube tools are available
- You can now use commands like:
- "Search for Python tutorial videos"
- "Get the transcript of this video: [video_url]"
- "Search through stored video transcripts about machine learning"
Debugging
If you encounter any issues:
- Make sure your Google API key is correctly set in the
.envfile - Check that all dependencies are installed correctly
- Verify that the server is running and listening for connections
- Look for any error messages in the server output
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Server Terkait
MCP-SearXNG-Enhanced Web Search
An enhanced MCP server for SearXNG web searching, utilizing a category-aware web-search, web-scraping, and includes a date/time retrieval tool.
Manalink MCP Server
An MCP server implementation for Manalink that allows AI assistants to use functions like teacher search.
SerpApi MCP Server
Retrieve parsed search engine results using the SerpApi.
mcpdoc
Access website documentation for AI search engines (llms.txt files) over MCP.
stooq-mcp
MCP server to fetch stock prices from stooq.com (Rust)
Splunk
Interact with Splunk Enterprise/Cloud using natural language queries.
Readeck MCP
An MCP server for advanced research assistance, configurable via environment variables.
OpenAI WebSearch
Provides web search functionality for AI assistants using the OpenAI API, enabling access to up-to-date information.
Scientific Paper Harvester
Harvests scientific papers from arXiv and OpenAlex, providing real-time access to metadata and full text.
OpenStreetMap
Enhances LLMs with location-based services and geospatial data from OpenStreetMap.