logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

spotify-mcp-server

Control Spotify playback, manage playlists, and enhance user interactions with AI assistants. Integrate music commands for searching, playing, and creating playlists on Spotify.

Author

spotify-mcp-server logo

marcelmarais

No License

Quick Info

GitHub GitHub Stars 154
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

spotifyplaylistscloudspotify mcpcontrol spotifyspotify playback

Spotify MCP Server

A lightweight Model Context Protocol (MCP) server that enables AI assistants like Cursor & Claude to control Spotify playback and manage playlists.

Contents - [Example Interactions](#example-interactions) - [Tools](#tools) - [Read Operations](#read-operations) - [Album Operations](#album-operations) - [Play / Create Operations](#play--create-operations) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Installation](#installation) - [Creating a Spotify Developer Application](#creating-a-spotify-developer-application) - [Spotify API Configuration](#spotify-api-configuration) - [Authentication Process](#authentication-process) - [Integrating with Claude Desktop, Cursor, and VsCode (Cline)](#integrating-with-claude-desktop-and-cursor)

Example Interactions

  • "Play Elvis's first song"
  • "Create a Taylor Swift / Slipknot fusion playlist"
  • "Copy all the techno tracks from my workout playlist to my work playlist"

Tools

Read Operations

  1. searchSpotify

  2. Description: Search for tracks, albums, artists, or playlists on Spotify

  3. Parameters:
    • query (string): The search term
    • type (string): Type of item to search for (track, album, artist, playlist)
    • limit (number, optional): Maximum number of results to return (10-50)
  4. Returns: List of matching items with their IDs, names, and additional details
  5. Example: searchSpotify("bohemian rhapsody", "track", 20)

  6. getNowPlaying

  7. Description: Get information about the currently playing track on Spotify

  8. Parameters: None
  9. Returns: Object containing track name, artist, album, playback progress, duration, and playback state
  10. Example: getNowPlaying()

  11. getMyPlaylists

  12. Description: Get a list of the current user's playlists on Spotify

  13. Parameters:
    • limit (number, optional): Maximum number of playlists to return (default: 20)
    • offset (number, optional): Index of the first playlist to return (default: 0)
  14. Returns: Array of playlists with their IDs, names, track counts, and public status
  15. Example: getMyPlaylists(10, 0)

  16. getPlaylistTracks

  17. Description: Get a list of tracks in a specific Spotify playlist

  18. Parameters:
    • playlistId (string): The Spotify ID of the playlist
    • limit (number, optional): Maximum number of tracks to return (default: 100)
    • offset (number, optional): Index of the first track to return (default: 0)
  19. Returns: Array of tracks with their IDs, names, artists, album, duration, and added date
  20. Example: getPlaylistTracks("37i9dQZEVXcJZyENOWUFo7")

  21. getRecentlyPlayed

  22. Description: Retrieves a list of recently played tracks from Spotify.

  23. Parameters:
    • limit (number, optional): A number specifying the maximum number of tracks to return.
  24. Returns: If tracks are found it returns a formatted list of recently played tracks else a message stating: "You don't have any recently played tracks on Spotify".
  25. Example: getRecentlyPlayed({ limit: 10 })

  26. getUsersSavedTracks

  27. Description: Get a list of tracks saved in the user's "Liked Songs" library

  28. Parameters:
    • limit (number, optional): Maximum number of tracks to return (1-50, default: 50)
    • offset (number, optional): Offset for pagination (0-based index, default: 0)
  29. Returns: Formatted list of saved tracks with track names, artists, duration, track IDs, and when they were added to Liked Songs. Shows pagination info (e.g., "1-20 of 150").
  30. Example: getUsersSavedTracks({ limit: 20, offset: 0 })

Play / Create Operations

  1. playMusic

  2. Description: Start playing a track, album, artist, or playlist on Spotify

  3. Parameters:
    • uri (string, optional): Spotify URI of the item to play (overrides type and id)
    • type (string, optional): Type of item to play (track, album, artist, playlist)
    • id (string, optional): Spotify ID of the item to play
    • deviceId (string, optional): ID of the device to play on
  4. Returns: Success status
  5. Example: playMusic({ uri: "spotify:track:6rqhFgbbKwnb9MLmUQDhG6" })
  6. Alternative: playMusic({ type: "track", id: "6rqhFgbbKwnb9MLmUQDhG6" })

  7. pausePlayback

  8. Description: Pause the currently playing track on Spotify

  9. Parameters:
    • deviceId (string, optional): ID of the device to pause
  10. Returns: Success status
  11. Example: pausePlayback()

  12. skipToNext

  13. Description: Skip to the next track in the current playback queue

  14. Parameters:
    • deviceId (string, optional): ID of the device
  15. Returns: Success status
  16. Example: skipToNext()

  17. skipToPrevious

  18. Description: Skip to the previous track in the current playback queue

  19. Parameters:
    • deviceId (string, optional): ID of the device
  20. Returns: Success status
  21. Example: skipToPrevious()

  22. createPlaylist

  23. Description: Create a new playlist on Spotify

  24. Parameters:
    • name (string): Name for the new playlist
    • description (string, optional): Description for the playlist
    • public (boolean, optional): Whether the playlist should be public (default: false)
  25. Returns: Object with the new playlist's ID and URL
  26. Example: createPlaylist({ name: "Workout Mix", description: "Songs to get pumped up", public: false })

  27. addTracksToPlaylist

  28. Description: Add tracks to an existing Spotify playlist

  29. Parameters:
    • playlistId (string): ID of the playlist
    • trackUris (array): Array of track URIs or IDs to add
    • position (number, optional): Position to insert tracks
  30. Returns: Success status and snapshot ID
  31. Example: addTracksToPlaylist({ playlistId: "3cEYpjA9oz9GiPac4AsH4n", trackUris: ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh"] })

  32. addToQueue

  33. Description: Adds a track, album, artist or playlist to the current playback queue

    • Parameters:
    • uri (string, optional): Spotify URI of the item to add to queue (overrides type and id)
    • type (string, optional): Type of item to queue (track, album, artist, playlist)
    • id (string, optional): Spotify ID of the item to queue
    • deviceId (string, optional): ID of the device to queue on
  34. Returns: Success status
  35. Example: addToQueue({ uri: "spotify:track:6rqhFgbbKwnb9MLmUQDhG6" })
  36. Alternative: addToQueue({ type: "track", id: "6rqhFgbbKwnb9MLmUQDhG6" })

Album Operations

  1. getAlbums

  2. Description: Get detailed information about one or more albums by their Spotify IDs

  3. Parameters:
    • albumIds (string|array): A single album ID or array of album IDs (max 20)
  4. Returns: Album details including name, artists, release date, type, total tracks, and ID. For single album returns detailed view, for multiple albums returns summary list.
  5. Example: getAlbums("4aawyAB9vmqN3uQ7FjRGTy") or getAlbums(["4aawyAB9vmqN3uQ7FjRGTy", "1DFixLWuPkv3KT3TnV35m3"])

  6. getAlbumTracks

  7. Description: Get tracks from a specific album with pagination support

  8. Parameters:
    • albumId (string): The Spotify ID of the album
    • limit (number, optional): Maximum number of tracks to return (1-50)
    • offset (number, optional): Offset for pagination (0-based index)
  9. Returns: List of tracks from the album with track names, artists, duration, and IDs. Shows pagination info.
  10. Example: getAlbumTracks("4aawyAB9vmqN3uQ7FjRGTy", 10, 0)

  11. saveOrRemoveAlbumForUser

  12. Description: Save or remove albums from the user's "Your Music" library

  13. Parameters:
    • albumIds (array): Array of Spotify album IDs (max 20)
    • action (string): Action to perform: "save" or "remove"
  14. Returns: Success status with confirmation message
  15. Example: saveOrRemoveAlbumForUser(["4aawyAB9vmqN3uQ7FjRGTy"], "save")

  16. checkUsersSavedAlbums

  17. Description: Check if albums are saved in the user's "Your Music" library

  18. Parameters:
    • albumIds (array): Array of Spotify album IDs to check (max 20)
  19. Returns: Status of each album (saved or not saved)
  20. Example: checkUsersSavedAlbums(["4aawyAB9vmqN3uQ7FjRGTy", "1DFixLWuPkv3KT3TnV35m3"])

Setup

Prerequisites

  • Node.js v16+
  • A Spotify Premium account
  • A registered Spotify Developer application

Installation

git clone https://github.com/marcelmarais/spotify-mcp-server.git
cd spotify-mcp-server
npm install
npm run build

Creating a Spotify Developer Application

  1. Go to the Spotify Developer Dashboard
  2. Log in with your Spotify account
  3. Click the "Create an App" button
  4. Fill in the app name and description
  5. Accept the Terms of Service and click "Create"
  6. In your new app's dashboard, you'll see your Client ID
  7. Click "Show Client Secret" to reveal your Client Secret
  8. Click "Edit Settings" and add a Redirect URI (e.g., http://127.0.0.1:8888/callback)
  9. Save your changes

Spotify API Configuration

Create a spotify-config.json file in the project root (you can copy and modify the provided example):

# Copy the example config file
cp spotify-config.example.json spotify-config.json

Then edit the file with your credentials:

{
  "clientId": "your-client-id",
  "clientSecret": "your-client-secret",
  "redirectUri": "http://127.0.0.1:8888/callback"
}

Authentication Process

The Spotify API uses OAuth 2.0 for authentication. Follow these steps to authenticate your application:

  1. Run the authentication script:
npm run auth
  1. The script will generate an authorization URL. Open this URL in your web browser.

  2. You'll be prompted to log in to Spotify and authorize your application.

  3. After authorization, Spotify will redirect you to your specified redirect URI with a code parameter in the URL.

  4. The authentication script will automatically exchange this code for access and refresh tokens.

  5. These tokens will be saved to your spotify-config.json file, which will now look something like:

{
  "clientId": "your-client-id",
  "clientSecret": "your-client-secret",
  "redirectUri": "http://localhost:8888/callback",
  "accessToken": "BQAi9Pn...kKQ",
  "refreshToken": "AQDQcj...7w",
  "expiresAt": 1677889354671
}
  1. The server will automatically refresh the access token when needed, using the refresh token.

Integrating with Claude Desktop, Cursor, and VsCode Via Cline model extension

To use your MCP server with Claude Desktop, add it to your Claude configuration:

{
  "mcpServers": {
    "spotify": {
      "command": "node",
      "args": ["spotify-mcp-server/build/index.js"]
    }
  }
}

For Cursor, go to the MCP tab in Cursor Settings (command + shift + J). Add a server with this command:

node path/to/spotify-mcp-server/build/index.js

To set up your MCP correctly with Cline ensure you have the following file configuration set cline_mcp_settings.json:

{
  "mcpServers": {
    "spotify": {
      "command": "node",
      "args": ["~/../spotify-mcp-server/build/index.js"],
      "autoApprove": ["getListeningHistory", "getNowPlaying"]
    }
  }
}

You can add additional tools to the auto approval array to run the tools without intervention.

See Also

`