mcp-youtube-search
Searches YouTube videos via SerpAPI, returning title, link, channel, views, duration, and published date.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-youtube-searchsearch for python tutorials"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP YouTube Search
A Python package for searching YouTube videos via SerpAPI, with an MCP server implementation.
Installation
Install from PyPI:
pip install mcp-youtube-searchRelated MCP server: YouTube MCP Server
Requirements
Python 3.11+
SerpAPI API key (get one at serpapi.com)
Usage
Set your API key
You can set your SerpAPI API key in one of two ways:
Set it as an environment variable:
export SERP_API_KEY="your_api_key_here"Or create a
.envfile with the following content:SERP_API_KEY=your_api_key_here
As a Python library
from mcp_youtube_search.search import YouTubeSearch
# Initialize with API key
search = YouTubeSearch(api_key="your_api_key_here") # or omit to use env var
# Search for videos
results = search.search("python tutorial", max_results=5)
# Process results
for video in results["results"]:
print(f"Title: {video['title']}")
print(f"Link: {video['link']}")
print(f"Channel: {video['channel']}")
print(f"Views: {video['views']}")
print(f"Duration: {video['duration']}")
print(f"Published: {video['published_date']}")
print("---")As a command-line tool
Search for videos:
mcp-youtube-search search "python tutorial" --max-results 5Run as an MCP server:
mcp-youtube-search serverMCP Server Integration
The package can be used as an MCP server for integration with AI assistants:
from mcp_youtube_search.mcp_server import run_server
# Run the server with an optional API key (or use env var)
run_server(api_key="your_api_key_here")License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
This server cannot be deployed
Maintenance
Related MCP Connectors
YouTube video search with transcript extraction as first-class output.
YouTube transcripts, search, channel/playlist listings and upload tracking for AI agents.
Search YouTube, read video metadata, and fetch transcripts with language preferences
YouTube transcripts, search, channels, playlists and bulk transcript jobs for AI agents. 14 tools.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to search YouTube for videos, channels, and playlists while retrieving detailed analytics and metrics through the YouTube Data API v3. Supports advanced filtering options and provides comprehensive statistics for content discovery and analysis.1MIT
- FlicenseNot gradedqualityDmaintenanceEnables interaction with YouTube through the YouTube Data API, allowing users to search for videos, playlists, and channels, generate video titles using AI, and manage YouTube content through natural language commands.22-
- FlicenseBqualityDmaintenanceEnables interaction with YouTube through search and transcript extraction functionality. Allows searching for videos and retrieving full transcripts with timestamps for content analysis.27-
- FlicenseNot gradedqualityNot gradedmaintenanceEnables searching across multiple search engines (Google, Bing, YouTube, DuckDuckGo, etc.) and retrieving parsed search results via SerpApi integration.-