Spotify MCP
Provides tools for searching tracks, controlling playback (play, pause, skip), retrieving currently playing content, creating playlists, and adding songs to playlists via the Spotify API.
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 'Blinding Lights' by The Weeknd"
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 minimal FastMCP server for Spotify with Authorization Code + PKCE auth.
Features
Search Spotify tracks with
search_songControl playback with
play,pause,skip_forward, andskip_backwardsRead currently playing content with
get_currently_playingCreate playlists with
create_playlistAdd songs to playlists with
add_songs_to_playlistBuild vibe playlists with
create_vibe_playlistPKCE login flow with local loopback callback
Tokens stored in the OS keyring
Automatic access-token refresh
Related MCP server: spotify-mcp
Prerequisites
Python 3.10+
A Spotify Developer app: Spotify Developer Dashboard
Spotify App Setup
Create an app in the Spotify Developer Dashboard.
Add this redirect URI:
http://127.0.0.1:8888/callback
Do not use
http://localhost.Copy your Client ID.
Local Setup
python -m venv .venv
.venv\Scripts\activate
pip install -e .
copy .env.example .envEdit .env:
SPOTIFY_CLIENT_ID=your_client_id_here
SPOTIFY_REDIRECT_URI=http://127.0.0.1:8888/callbackLogin (PKCE)
Run once before using the MCP tools:
python -m spotify_mcp.auth loginThis opens your browser, completes Spotify authorization, and stores tokens in your OS keyring.
By default, login requests the minimum scopes needed by the current tools:
user-read-currently-playinguser-modify-playback-stateplaylist-modify-privateplaylist-modify-public
If you logged in before playback or playlist tools were added, run login again so Spotify grants the new scopes.
If login times out waiting for the callback:
Make sure the Spotify Developer Dashboard has the exact redirect URI
http://127.0.0.1:8888/callback.Complete the authorization page in the browser before the timeout.
Keep the terminal running until Spotify redirects back to
127.0.0.1.If you need more time, run
python -m spotify_mcp.auth login --timeout 600.
To remove stored tokens:
python -m spotify_mcp.auth logoutRun the MCP Server
python -m spotify_mcp.serverOr:
spotify-mcpCursor MCP Config
Add this to your Cursor MCP settings (.cursor/mcp.json or Cursor Settings > MCP):
{
"mcpServers": {
"spotify": {
"command": "C:\\Users\\vihoh\\Coding Projects\\Spotify-MCP\\.venv\\Scripts\\python.exe",
"args": ["-m", "spotify_mcp.server"],
"cwd": "C:\\Users\\vihoh\\Coding Projects\\Spotify-MCP"
}
}
}Adjust the Python path if your virtual environment lives elsewhere.
Tool: search_song
Searches Spotify tracks via GET /v1/search with type=track.
Parameters:
query(required): search textlimit(optional, default5, range0-10)market(optional): ISO country codeoffset(optional, default0, range0-1000)
Example prompt in Cursor:
Use search_song to find "Blinding Lights" by The Weeknd.Playback Tools
Playback endpoints require a Spotify Premium account and an active Spotify device.
play(device_id: str | None = None): resume playback.pause(device_id: str | None = None): pause playback.skip_forward(device_id: str | None = None): skip to the next track.skip_backwards(device_id: str | None = None): skip to the previous track.get_currently_playing(market: str | None = None, additional_types: str | None = None): get the current track or episode.
Example prompts in Cursor:
Use get_currently_playing to tell me what's playing.Pause Spotify.Playlist Tools
Playlist endpoints use:
POST /v1/me/playliststo create playlistsPOST /v1/playlists/{playlist_id}/itemsto add tracksGET /v1/searchwithtype=trackto resolve song queries
Tools:
create_playlist(name, description=None, public=False, collaborative=False): create an empty playlist.add_songs_to_playlist(playlist_id, song_queries, market=None): search for each query and add the best match.create_vibe_playlist(name, vibe, song_queries, description=None, public=False, market=None): create a playlist and add matched songs for a vibe.
Vibe playlist workflow
The LLM should turn your vibe prompt into a list of song_queries, then call create_vibe_playlist.
Example prompt in Cursor:
Create a late-night rainy drive playlist with create_vibe_playlist.
Use a name like "Rainy Night Drive" and pick about 15 songs that fit the vibe.The LLM might call:
create_vibe_playlist(
name="Rainy Night Drive",
vibe="late-night rainy drive, mellow and atmospheric",
song_queries=[
"The Weeknd Blinding Lights",
"Frank Ocean Pink + White",
"Tame Impala The Less I Know The Better"
],
public=false
)If some queries do not match, the tool returns unresolved_queries for the ones it could not find.
Notes
Search uses PKCE user auth even though catalog search is public data. This keeps auth ready for playlist and library tools.
Playback uses Spotify's documented Player endpoints.
Playlist tools request
playlist-modify-privateandplaylist-modify-public.This project does not use deprecated Spotify recommendation or audio-features endpoints for vibe playlists.
If auth expires or is revoked, run
python -m spotify_mcp.auth loginagain.Spotify content is attributed in tool responses and not cached beyond immediate use.
Project Layout
src/spotify_mcp/
auth.py # PKCE login, token storage, refresh helpers
spotify_client.py # Spotify API requests and error handling
server.py # FastMCP server and toolsLicense
Use in compliance with the Spotify Developer Terms.
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/HUANGV1/Spotify-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server