Extracts and processes YouTube video transcripts, with support for searching within transcripts, batch processing multiple videos, retrieving transcripts from entire channels or playlists, and exporting in multiple formats (JSON, text, SRT, VTT).
YouTube Transcript MCP Server
An MCP (Model Context Protocol) server for extracting and processing YouTube video transcripts.
Features
Extract transcripts from YouTube videos
Channel processing - Get all videos from a YouTube channel
Playlist processing - Get all videos from a YouTube playlist
Bulk transcripts - Extract transcripts from all channel or playlist videos
Search within transcripts for specific content
Batch processing of multiple videos
Multiple output formats (JSON, text, SRT, VTT)
Context-aware search with configurable windows
Installation
Via NPX (Recommended)
Local Development
Usage
As MCP Server
Option 1: Via NPX
Add to your Claude Desktop configuration:
Option 2: Local Installation
Add to your Claude Desktop configuration:
Available Tools
youtube_get_transcript
Extract transcript from a YouTube video.
Parameters:
url(required): YouTube video URLlanguage(optional): Language code (default: "en")format(optional): Output format - "json", "text", "srt", "vtt" (default: "json")
youtube_search_transcript
Search for specific text within a transcript.
Parameters:
url(required): YouTube video URLquery(required): Text to search forcontextWindow(optional): Seconds of context (default: 30)caseSensitive(optional): Case sensitive search (default: false)language(optional): Language code (default: "en")
youtube_batch_transcripts
Process multiple videos simultaneously.
Parameters:
urls(required): Array of YouTube video URLslanguage(optional): Language code (default: "en")maxConcurrent(optional): Max concurrent requests (default: 3)
youtube_transcript_summary
Get formatted summary of transcript content.
Parameters:
url(required): YouTube video URLsummaryType(optional): "brief", "detailed", "topics", "timestamps" (default: "brief")language(optional): Language code (default: "en")
youtube_get_channel_videos
Get detailed video information from a YouTube channel.
Parameters:
channelUrl(required): YouTube channel URL (supports @username, /c/, /channel/, /user/ formats)maxVideos(optional): Maximum number of videos to retrieve (default: 50, max: 200)
youtube_get_channel_video_urls
Get just the video URLs from a YouTube channel.
Parameters:
channelUrl(required): YouTube channel URLmaxVideos(optional): Maximum number of video URLs to retrieve (default: 50, max: 200)
youtube_get_channel_transcripts
Extract transcripts from multiple videos in a YouTube channel.
Parameters:
channelUrl(required): YouTube channel URLmaxVideos(optional): Maximum number of videos to process (default: 10, max: 50)maxConcurrent(optional): Max concurrent transcript requests (default: 3, max: 10)
youtube_get_playlist_info
Get information about a YouTube playlist.
Parameters:
playlistUrl(required): YouTube playlist URL (supports playlist?list= and watch?v=...&list= formats)
youtube_get_playlist_videos
Get detailed video information from a YouTube playlist.
Parameters:
playlistUrl(required): YouTube playlist URLmaxVideos(optional): Maximum number of videos to retrieve (default: 50, max: 200)
youtube_get_playlist_video_urls
Get just the video URLs from a YouTube playlist.
Parameters:
playlistUrl(required): YouTube playlist URLmaxVideos(optional): Maximum number of video URLs to retrieve (default: 50, max: 200)
youtube_get_playlist_transcripts
Extract transcripts from multiple videos in a YouTube playlist.
Parameters:
playlistUrl(required): YouTube playlist URLmaxVideos(optional): Maximum number of videos to process (default: 50, max: 200)maxConcurrent(optional): Max concurrent transcript requests (default: 3, max: 10)
Example Usage
Requirements
Node.js 18+
No API keys required (uses public transcript data)
Limitations
Only works with videos that have public transcripts
Rate limiting may apply for high-volume usage
Transcript availability depends on YouTube's availability
License
MIT