yt-music-mcp
Click on "Deploy 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., "@yt-music-mcpsearch for songs by Taylor Swift"
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.
yt-music-mcp
Simple YouTube Music MCP server that uses STDIO transport, compatible with Claude Code ~/.claude.json MCP config.
Features
search_songssearch_artistsget_playlistscreate_playlistadd_to_playlistremove_from_playlistget_playlist_itemsauth_callback
Related MCP server: ytm-mcp
Requirements
Node.js 18+
Google OAuth client with YouTube Data API v3 enabled
Environment variables:
GOOGLE_CLIENT_IDGOOGLE_CLIENT_SECRET
Install
npm install
npm run buildClaude Code config
Add this to ~/.claude.json:
{
"mcpServers": {
"yt-music": {
"command": "node",
"args": [
"/Users/fperalta/Documents/projects/openclaw/yt-music-mcp/dist/index.js"
],
"env": {
"GOOGLE_CLIENT_ID": "your-client-id",
"GOOGLE_CLIENT_SECRET": "your-client-secret"
}
}
}
}Authentication flow
On first run, the server writes a Google auth URL to stderr.
Open the URL in your browser.
Approve access.
Copy the authorization code.
Call the MCP tool
auth_callbackwith that code.The refresh token is saved to
~/.yt-music-mcp/tokens.json.
After that, future runs reuse the saved refresh token automatically.
Notes
Transport is STDIO only, no HTTP server.
Uses YouTube Data API v3 via
googleapis.Song search filters to YouTube's Music category (
videoCategoryId=10).remove_from_playlistremoves byplaylistId + videoIds, so if the same video appears multiple times, all matching entries are removed.
Development
npm run build
node dist/index.jsThe process should stay alive and wait for MCP messages on stdin.
This server cannot be deployed
Maintenance
Related MCP Connectors
YouTube transcripts, search, channel browsing, and playlists for AI agents via MCP.
YouTube MCP — wraps the YouTube Data API v3 (BYO API key)
The official MCP Server for the Mux API
MCP server for Suno AI music generation, lyrics, and covers
Related MCP Servers
- AlicenseBqualityDmaintenanceA simple MCP server that allows AI assistants like Cursor or Claude Desktop to search for and play tracks on YouTube Music through natural language commands.254 npm12MIT
- FlicenseNot gradedqualityDmaintenanceA full-featured YouTube Music MCP server that lets AI assistants control playback, browse history, download songs, and manage playlists via natural language.1-
- AlicenseAqualityDmaintenanceMCP server for controlling the mpv media player, enabling playback control, music library browsing, YouTube streaming and downloading, and metadata editing from within an MCP client.1724 npm1MIT
- FlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI applications to search YouTube music videos and manage playlists via the YouTube Data API v3, with OAuth support for playlist and subscription management.3-