@striderlabs/mcp-youtube
v1.0.0
Published
MCP server connector for YouTube — search videos, manage playlists, subscriptions, and watch history via Playwright browser automation
Maintainers
Readme
@striderlabs/mcp-youtube
MCP server connector for YouTube — search videos, manage playlists, subscriptions, and watch history via Playwright browser automation.
Installation
npm install @striderlabs/mcp-youtubeConfiguration
Set environment variables:
export YOUTUBE_EMAIL="[email protected]"
export YOUTUBE_PASSWORD="your-password"
export YOUTUBE_HEADLESS="true" # Set to "false" to see browserTools
| Tool | Description |
|------|-------------|
| search_videos | Search for videos by query |
| get_video_details | Get detailed info about a video |
| get_channel_info | Get channel information |
| list_playlists | List user playlists |
| get_playlist_videos | Get videos in a playlist |
| subscribe_channel | Subscribe to a channel |
| get_subscriptions | List subscribed channels |
| get_watch_history | Get watch history |
| like_video | Like a video |
| add_to_playlist | Add video to playlist |
MCP Configuration
Add to your MCP config:
{
"mcpServers": {
"youtube": {
"command": "npx",
"args": ["@striderlabs/mcp-youtube"],
"env": {
"YOUTUBE_EMAIL": "your-email",
"YOUTUBE_PASSWORD": "your-password"
}
}
}
}License
MIT
