YouTube Music MCP Server
Allows searching for tracks, creating and managing playlists, adding tracks to playlists, and listing library playlists on YouTube Music.
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 Music MCP Serversearch for 'Stairway to Heaven' on YouTube Music"
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 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
Related MCP server: Spotify MCP Node Server
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/youtubeAdd 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.authThis 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-mcpRemote 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.txtStart Command:
python -m src.server_remote
Set environment variable:
Generate base64 token:
cat token.json | base64Add env var:
YOUTUBE_TOKEN_B64= (your base64 string)
Deploy! Your server will be at
https://your-service.onrender.comIn 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 for tracks (returns videoId for adding to playlists) |
| Create a new playlist (private, public, or unlisted) |
| Add videos to an existing playlist |
| List your YouTube playlists |
| Get all tracks from a playlist |
| Search for songs and add top results to a playlist |
| Update playlist title and/or description |
| 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 credentialsBoth 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/leosakharoff/youtube-music-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server