Skip to main content
Glama

Spotify MCP

A minimal FastMCP server for Spotify with Authorization Code + PKCE auth.

Features

  • Search Spotify tracks with search_song

  • Control playback with play, pause, skip_forward, and skip_backwards

  • Read currently playing content with get_currently_playing

  • Create playlists with create_playlist

  • Add songs to playlists with add_songs_to_playlist

  • Build vibe playlists with create_vibe_playlist

  • PKCE login flow with local loopback callback

  • Tokens stored in the OS keyring

  • Automatic access-token refresh

Related MCP server: spotify-mcp

Prerequisites

Spotify App Setup

  1. Create an app in the Spotify Developer Dashboard.

  2. Add this redirect URI:

    • http://127.0.0.1:8888/callback

  3. Do not use http://localhost.

  4. Copy your Client ID.

Local Setup

python -m venv .venv
.venv\Scripts\activate
pip install -e .
copy .env.example .env

Edit .env:

SPOTIFY_CLIENT_ID=your_client_id_here
SPOTIFY_REDIRECT_URI=http://127.0.0.1:8888/callback

Login (PKCE)

Run once before using the MCP tools:

python -m spotify_mcp.auth login

This 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-playing

  • user-modify-playback-state

  • playlist-modify-private

  • playlist-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 logout

Run the MCP Server

python -m spotify_mcp.server

Or:

spotify-mcp

Cursor 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 text

  • limit (optional, default 5, range 0-10)

  • market (optional): ISO country code

  • offset (optional, default 0, range 0-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/playlists to create playlists

  • POST /v1/playlists/{playlist_id}/items to add tracks

  • GET /v1/search with type=track to 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-private and playlist-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 login again.

  • 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 tools

License

Use in compliance with the Spotify Developer Terms.

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

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