youtube-watchlater-mcp
Allows fetching YouTube Watch Later playlist and video subtitles using yt-dlp with browser cookies.
Click on "Install 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., "@youtube-watchlater-mcpshow my watch later playlist"
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.
youtube-watchlater-mcp
MCP server for fetching your YouTube Watch Later playlist via yt-dlp.
Why This Exists
The YouTube Watch Later playlist is invisible to the YouTube Data API.
Most YouTube MCP servers and integrations use the official YouTube Data API v3 with OAuth authentication. This works well for public playlists, subscriptions, search, and liked videos — but Watch Later is a special private playlist (WL) that Google has explicitly excluded from the API. Even with full OAuth scopes and a valid token, the API returns an empty result or a 403 Forbidden error for this playlist.
This means:
OAuth-based MCPs cannot access Watch Later — the endpoint simply does not exist in the API.
Scraping the YouTube web UI requires managing session cookies, handling anti-bot measures, and is fragile against layout changes.
yt-dlp with browser cookies is the only reliable approach: it reads the authentication cookies that your browser already holds from your active YouTube login, and uses them to fetch the playlist directly — exactly as your browser would.
This server wraps that mechanism as an MCP tool so AI assistants can read your Watch Later queue without you needing API keys, OAuth flows, or exposing credentials.
Related MCP server: YouTube Watch Later MCP Server
Requirements
Node.js 18+
yt-dlpinstalled and available on$PATHYouTube account logged in to a browser on your machine
Installation
1. Install yt-dlp:
# macOS
brew install yt-dlp
# Linux
sudo curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp
sudo chmod a+rx /usr/local/bin/yt-dlp
# Windows (winget)
winget install yt-dlp2. Install Node.js dependencies:
npm installRunning
npm startThe server communicates over stdio and is intended to be connected to an MCP host (e.g. Claude Desktop), not run directly in a browser.
Claude Desktop Setup
Add to claude_desktop_config.json:
{
"mcpServers": {
"youtube-watchlater": {
"command": "node",
"args": ["/path/to/youtube-watchlater-mcp/server.mjs"]
}
}
}Tool: get_watch_later
Returns videos from your Watch Later playlist.
Parameter | Type | Default | Description |
|
|
| Browser to read YouTube cookies from |
| number (1–500) |
| Number of videos to return |
| string | — | Browser profile name, e.g. |
Example response:
{
"items": [
{
"videoId": "dQw4w9WgXcQ",
"title": "Never Gonna Give You Up",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"channel": "Rick Astley"
}
]
}Tool: get_subtitles
Downloads auto-generated subtitles for a YouTube video and returns the VTT content.
Parameter | Type | Default | Description |
| string | — | YouTube video URL or bare video ID (e.g. |
| string |
| Subtitle language code, e.g. |
|
|
| Browser to read YouTube cookies from |
| string | — | Browser profile name, e.g. |
Example response:
{
"lang": "en",
"videoId": "dQw4w9WgXcQ",
"subtitles": "WEBVTT\n..."
}How It Works
The server calls yt-dlp --cookies-from-browser <browser> --flat-playlist --dump-json against the WL playlist. Cookies are read directly from the local browser — no tokens or passwords are transmitted anywhere.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityCmaintenanceUses yt-dlp to download subtitles from YouTube and connects it to claude.ai via Model Context Protocol.812,627541MIT
- Alicense-qualityDmaintenanceEnables secure access to your YouTube Watch Later playlist, allowing retrieval of video URLs added within a specified timeframe through a simple interface using OAuth2 authentication.11MIT
- AlicenseAqualityDmaintenanceEnables fetching, searching, and analyzing YouTube video transcripts in multiple languages using yt-dlp. Supports timestamp filtering, language detection, and transcript summaries with robust error handling for production use.4MIT
- AlicenseAqualityCmaintenanceFetches YouTube video subtitles and transcripts with support for multiple languages and output formats (SRT, VTT, TXT, JSON).110Apache 2.0
Related MCP Connectors
YouTube transcripts, subtitles, and video metadata as structured JSON via an Apify Actor.
Fetch transcripts, subtitles, chapters, metadata and frames from YouTube and 10+ video platforms
YouTube MCP — wraps the YouTube Data API v3 (BYO API key)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tulaman/youtube-watchlater-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server