YouTube Music MCP Server
Enables AI assistants to search for music and create/manage playlists on YouTube Music via OAuth 2.0 authentication.
README
YouTube Music MCP Server
Model Context Protocol server for YouTube Music integration. Allows AI assistants to search for music and create/manage playlists on your YouTube account.
Features
- Search for tracks on YouTube Music
- Create new playlists
- Add tracks to existing playlists
- Batch operations (search and add multiple tracks at once)
- List your library playlists
- OAuth 2.0 authentication with Google
Prerequisites
- Python 3.10+
- Google account with YouTube access
- Google Cloud project with YouTube Data API enabled
Setup
1. Create a Google Cloud Project
- Go to Google Cloud Console
- Create a new project (or select an existing one)
- Enable the YouTube Data API v3:
- Go to APIs & Services → Library
- Search for "YouTube Data API v3"
- Click Enable
2. Create OAuth Credentials
- Go to APIs & Services → Credentials
- Click Create Credentials → OAuth client ID
- If prompted, configure the OAuth consent screen:
- Choose External user type
- Fill in the required fields (app name, support email)
- Add scope:
https://www.googleapis.com/auth/youtube - Add your email as a Test user (required while in testing mode)
- Create OAuth client ID:
- Application type: Desktop app
- Name:
YouTube Music MCP(or any name)
- Download the JSON file and save it as
client_secret.jsonin the project root
3. Install the Server
# Clone the repository
git clone https://github.com/leosakharoff/youtube-music-mcp.git
cd youtube-music-mcp
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -e .
4. Authenticate with Google
python -m src.auth
This opens a browser window for Google sign-in. After authorizing, your credentials are saved to token.json (gitignored).
Usage
Local Usage with Claude Desktop
Add to your Claude Desktop config:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"youtube-music": {
"command": "/path/to/youtube-music-mcp/venv/bin/python",
"args": ["-m", "src.server"],
"cwd": "/path/to/youtube-music-mcp"
}
}
}
Local Usage with Claude Code
claude mcp add youtube-music "python -m src.server" --cwd /path/to/youtube-music-mcp
Remote Deployment (Render)
Deploy to Render for use with Claude web/iOS without your computer running.
-
Fork this repository to your GitHub account
-
Create a new Web Service on Render:
- Connect your GitHub repo
- Build Command:
pip install -r requirements.txt - Start Command:
python -m src.server_remote
-
Set environment variable:
- Generate base64 token:
cat token.json | base64 - Add env var:
YOUTUBE_TOKEN_B64= (your base64 string)
- Generate base64 token:
-
Deploy! Your server will be at
https://your-service.onrender.com -
In Claude, add custom connector with URL:
https://your-service.onrender.com/sse
Note: Render free tier sleeps after 15 min of inactivity. First request may take ~30s to wake up.
Example Prompts
Once connected to Claude, try:
- "Search YouTube Music for 'Neu! Hallogallo'"
- "Create a playlist called 'Krautrock Classics'"
- "Add these tracks to my playlist: 'Can Vitamin C', 'Kraftwerk Autobahn', 'Tangerine Dream Phaedra'"
- "Show me my YouTube playlists"
Available Tools
| Tool | Description |
|---|---|
search_youtube_music |
Search for tracks (returns videoId for adding to playlists) |
create_playlist |
Create a new playlist (private, public, or unlisted) |
add_to_playlist |
Add videos to an existing playlist |
get_my_playlists |
List your YouTube playlists |
get_playlist_details |
Get all tracks from a playlist |
search_and_add |
Search for songs and add top results to a playlist |
update_playlist |
Update playlist title and/or description |
delete_playlist |
Delete a playlist (cannot be undone) |
Troubleshooting
"Access blocked" during OAuth
Your Google Cloud app is in testing mode. Add your email as a test user:
- Go to APIs & Services → OAuth consent screen
- Under Test users, click Add Users
- Add your Google account email
Token refresh errors
Delete token.json and run python -m src.auth again.
Rate limiting
YouTube Data API has quotas. If you hit limits:
- Reduce batch sizes
- Wait before retrying
- Check your API quota
Development
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
pytest tests/ -v
# Format code
black src/ tests/
ruff check src/ tests/
Security Notes
client_secret.jsonandtoken.jsoncontain sensitive credentials- Both are gitignored by default - never commit them
- For remote deployment, use environment variables (base64 encoded)
License
MIT License
Acknowledgments
- Uses YouTube Data API v3
- Built with Model Context Protocol
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。