The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the YouTube Research MCP listing page.
Turn YouTube videos into citation-ready research for Codex, Claude, Cursor, and other MCP clients. Paste a video URL and get transcript evidence with timestamps and links that open at the exact quoted moment.
No YouTube API key is required for transcript research.
/mcp, plus Docker and Smithery support.The MCP layer validates inputs and returns structured evidence; it does not ask a model to invent summaries or citations. Transcript tools derive timestamps and canonical links from caption segments. Data API tools return an explicit key-required error when YOUTUBE_API_KEY is unavailable, and remote authentication is enforced before MCP session handling.
The included live smoke test asks a focused question about a public video and compares the response with the full timestamped transcript:
| Response | Characters returned |
|---|---|
| Full transcript | 85,518 |
research-video (3 citations with source identity) | 1,550 |
| Reduction | 98.2% |
This measures response characters, not model-specific tokens. Reproduce it against the default public fixture—or substitute your own video and query:
Requirements: Node.js 20 or newer.
The shortest local install uses stdio and needs no API key:
For Claude Desktop and other MCPB-compatible desktop clients, download the latest one-click MCP bundle and open it. The bundle vendors its runtime dependencies, starts locally over stdio, and asks for a YouTube API key only if you want the optional analytics tools.
Or install from the VS Code command line:
For Claude Desktop, Cursor, and other stdio clients, use command npx with arguments -y @coyasong/youtube-mcp-server@latest.
To run the Streamable HTTP transport instead:
The server starts at http://localhost:3000/mcp in transcript-only mode. Confirm it with:
With the HTTP server running:
Then ask Codex:
Set a YouTube Data API v3 key to switch from transcript-only to full mode:
YOUTUBE_API_KEY is optional. PORT defaults to 3000.
Do not expose a full-mode server publicly without authentication: unauthenticated users could consume your YouTube API quota. Set a strong bearer token and restrict browser origins when deploying outside localhost:
Browser origins are denied by default. CORS_ORIGIN accepts a comma-separated
allowlist of exact http:// or https:// origins; wildcard origins are rejected.
Connect Codex using an environment variable rather than writing the secret into its configuration:
/health remains public for container health checks. MCP requests return 401 when authentication is enabled and the bearer token is missing or invalid. Idle sessions are removed automatically, and MAX_SESSIONS bounds memory use.
research-video accepts:
video: a YouTube URL or 11-character video IDlanguage: optional caption language such as en, ko, or jaquery: optional phrase to find inside the transcriptcontextLines: surrounding segments to retain, from 0 to 5matchMode: word (default) or substringstartSeconds / endSeconds: optional time windowoffset: result offset for paginationmaxSegments: response cap from 1 to 1,000 (default: 200)It returns structured JSON containing the video title and channel identity, canonical video URL, full caption-track duration and segment count, matching transcript segments, human-readable citation labels, timestamps, directly navigable citation URLs, and pagination metadata. For long videos, use a query or time window first; follow nextOffset only when more evidence is needed.
research-videos applies one focused query to 2–5 video URLs concurrently. It returns the same structured, timestamp-linked evidence for each source while capping results per video. This is useful for comparing interviews, checking whether multiple sources support a claim, or researching a topic across a short watchlist.
See YouTube Research Recipes for copy-paste workflows for fact-checking claims, comparing interviews, navigating long talks, researching multilingual captions, and building citation-ready notes.
| Capability | No-key mode | With YOUTUBE_API_KEY |
|---|---|---|
| Transcript research, filtering, key moments, segmentation, summaries | Yes | Yes |
| Video search and comments | No | Yes |
| Video/channel metadata, statistics, trends, and comparisons | No | Yes |
Captions must be available for the requested video. Age-restricted, private, region-restricted, or caption-disabled videos may not return a transcript.
If this project saves you research time, consider starring the repository so other agent builders can discover it.
See the broader AI tooling portfolio for the
reliability principles shared with ralph-research and tmuxicate.
Maintainers can follow the release guide. Published GitHub releases run the complete npm, MCP Registry, MCPB, and Smithery delivery pipeline.
youtube://video/{videoId} - Get detailed information about a specific videoyoutube://channel/{channelId} - Get information about a specific channelyoutube://transcript/{videoId} - Get transcript for a specific video
?language=LANGUAGE_CODE (e.g., en, ko, ja)research-video - Get citation-ready transcript evidence from a URL or video ID without an API keyresearch-videos - Compare timestamp-linked evidence across 2–5 videos without an API keysearch-videos - Search for YouTube videos with advanced filtering optionsget-video-comments - Get comments for a specific videoget-video-transcript - Get transcript for a specific video with optional languageenhanced-transcript - Advanced transcript extraction with filtering, search, and multi-video capabilitiesget-key-moments - Extract key moments with timestamps from a video transcript for easier navigationget-segmented-transcript - Divide a video transcript into segments for easier analysisTools requiring YOUTUBE_API_KEY are search, comments, statistics, discovery, and channel analysis. enhanced-transcript needs the key only when includeMetadata is true.
get-video-stats - Get statistical information for a specific videoget-channel-stats - Get subscriber count, view count, and other channel statisticscompare-videos - Compare statistics across multiple videosget-trending-videos - Retrieve trending videos by region and categoryget-video-categories - Get available video categories for a specific regionanalyze-channel-videos - Analyze performance trends of videos from a specific channelvideo-analysis - Generate an analysis of a YouTube videotranscript-summary - Generate a summary of a video based on its transcript with customizable length and keywords extractionsegment-by-segment-analysis - Provide detailed breakdown of content by analyzing each segment of the videoThe server handles various error conditions, including:
MIT