spotify-mcp
Provides tools for searching Spotify, managing playlists (create, update, add/remove/reorder tracks), managing liked songs library, controlling playback (play, pause, next, previous, queue), and retrieving user profile and playback state.
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., "@spotify-mcpsearch for songs by The Beatles"
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.
spotify-mcp
A remote MCP (Model Context Protocol) server for Spotify, running on Cloudflare Workers. It lets an AI assistant search Spotify and manage your playlists, library and playback — including moving tracks around inside playlists.
Auth is handled entirely over the web: the server is its own OAuth provider to
the MCP client, and performs the Spotify OAuth flow upstream. There is no local
binary and no authenticate tool — connecting the server in your MCP client
opens the Spotify consent screen in your browser.
Architecture
McpAgent(SpotifyMCP, a Durable Object) hosts the MCP server and tools, served over Streamable HTTP at/mcp(and legacy SSE at/sse).@cloudflare/workers-oauth-providerwraps the Worker. It issues tokens to MCP clients and stores the upstream Spotify tokens (access + refresh) encrypted in the grantprops.SpotifyHandler(Hono app) implements/authorizeand/callback, driving the Spotify authorization-code flow and showing the consent dialog.The agent persists a working access token in its Durable Object state and refreshes it automatically using the stored refresh token.
MCP client ──/mcp──▶ OAuthProvider ──▶ SpotifyMCP (Durable Object)
│ │ │
/authorize /callback Spotify Web API
└────── Spotify consent (browser) ────────┘Related MCP server: Cloudflare Remote MCP Server
Tools
Tool | What it does |
| Current user profile |
| Search tracks / albums / artists / playlists |
| Your playlists |
| Playlist details + tracks with their positions |
| Create a playlist |
| Rename / re-describe / change public state |
| Add tracks, optionally at a specific position |
| Remove tracks |
| Move a track (or range of tracks) to a new position |
| Unfollow / delete a playlist |
| Liked-songs library |
| What's playing, on which device |
| play / pause / next / previous (Premium + active device) |
| Queue a track |
Deploy it yourself
Runs on the Cloudflare Workers free tier.
Prerequisites
A Cloudflare account and the Wrangler CLI logged in (
npx wrangler login).A Spotify Developer account.
Node.js 18+.
0. Get the code
git clone https://github.com/lassejlv/spotify-mcp.git
cd spotify-mcp
npm install --ignore-scripts # --ignore-scripts avoids an unused native build (sharp)1. Create a Spotify app
At https://developer.spotify.com/dashboard, create an app and note the Client ID and Client Secret. Under Redirect URIs, add your Worker's callback URL:
https://spotify-mcp.<your-subdomain>.workers.dev/callback(The workers.dev subdomain is shown after the first wrangler deploy. Add the
URI, then deploy again if needed. A custom domain's /callback works too.)
2. Create the KV namespace
The OAuth provider stores grants, tokens and clients in KV.
npx wrangler kv namespace create OAUTH_KVCopy the returned id into wrangler.jsonc, replacing the existing OAUTH_KV
id value (the checked-in one belongs to the original author's account and won't
work for you).
3. Set secrets
npx wrangler secret put SPOTIFY_CLIENT_ID # your Spotify Client ID
npx wrangler secret put SPOTIFY_CLIENT_SECRET # your Spotify Client Secret
npx wrangler secret put COOKIE_ENCRYPTION_KEY # any random string, e.g. `openssl rand -hex 32`Optional — restrict who can use the server:
# Comma-separated allowlist of Spotify account emails. Only these accounts can
# authorize; everyone else is rejected at the callback (no token issued).
# Leave unset to allow any Spotify account.
npx wrangler secret put ALLOWED_EMAILS # e.g. me@example.com,friend@example.com4. Deploy
npx wrangler deployYour server is now live at https://spotify-mcp.<your-subdomain>.workers.dev/mcp.
Connect an MCP client
Point any remote-MCP-capable client at the /mcp URL. Clients that only speak
stdio can bridge via mcp-remote:
{
"mcpServers": {
"spotify": {
"command": "npx",
"args": ["mcp-remote", "https://spotify-mcp.<your-subdomain>.workers.dev/mcp"]
}
}
}On first connect, your browser opens: approve the MCP client, then log in and grant Spotify access. Tokens are refreshed automatically thereafter.
Local development
cp .dev.vars.example .dev.vars # then fill in the three values
npx wrangler devwrangler dev simulates KV locally. Use http://localhost:8788/callback as an
additional Spotify redirect URI for local testing.
Notes
Tracks and playlists can be referenced by bare ID or full
spotify:URI in any tool.reorder_playlist_tracksuses zero-based positions; callget_playlist_tracksfirst to see current positions.Playback control endpoints require Spotify Premium and an active device.
Requested scopes: playlist read/modify (public + private), library read/modify, playback read/modify,
user-read-private, anduser-read-email(used for theALLOWED_EMAILSaccess gate).Access control: set the
ALLOWED_EMAILSsecret to a comma-separated list to restrict the server to specific Spotify accounts; leave it unset to allow anyone.
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/lassejlv/spotify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server