Spotify MCP Server
A lightweight Model Context Protocol server that enables AI assistants like Cursor & Claude to control Spotify playback and manage playlists.
marcelmarais
Tools
searchSpotify
Search for tracks, albums, artists, or playlists on Spotify
getNowPlaying
Get information about the currently playing track on Spotify
getMyPlaylists
Get a list of the current user's playlists on Spotify
getPlaylistTracks
Get a list of tracks in a Spotify playlist
playMusic
Start playing a Spotify track, album, artist, or playlist
pausePlayback
Pause Spotify playback on the active device
skipToNext
Skip to the next track in the current Spotify playback queue
skipToPrevious
Skip to the previous track in the current Spotify playback queue
createPlaylist
Create a new playlist on Spotify
addTracksToPlaylist
Add tracks to a Spotify playlist
resumePlayback
Resume Spotify playback on the active device
addToQueue
Adds a track, album, artist or playlist to the playback queue
README
<div align="center" style="display: flex; align-items: center; justify-content: center; gap: 10px;"> <img src="https://upload.wikimedia.org/wikipedia/commons/8/84/Spotify_icon.svg" width="30" height="30"> <h1>Spotify MCP Server</h1> </div>
A lightweight Model Context Protocol (MCP) server that enables AI assistants like Cursor & Claude to control Spotify playback and manage playlists.
<details> <summary>Contents</summary>
</details>
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
-
searchSpotify
- Description: Search for tracks, albums, artists, or playlists on Spotify
- Parameters:
query
(string): The search termtype
(string): Type of item to search for (track, album, artist, playlist)limit
(number, optional): Maximum number of results to return (10-50)
- Returns: List of matching items with their IDs, names, and additional details
- Example:
searchSpotify("bohemian rhapsody", "track", 20)
-
getNowPlaying
- Description: Get information about the currently playing track on Spotify
- Parameters: None
- Returns: Object containing track name, artist, album, playback progress, duration, and playback state
- Example:
getNowPlaying()
-
getMyPlaylists
- Description: Get a list of the current user's playlists on Spotify
- Parameters:
limit
(number, optional): Maximum number of playlists to return (default: 20)offset
(number, optional): Index of the first playlist to return (default: 0)
- Returns: Array of playlists with their IDs, names, track counts, and public status
- Example:
getMyPlaylists(10, 0)
-
getPlaylistTracks
- Description: Get a list of tracks in a specific Spotify playlist
- Parameters:
playlistId
(string): The Spotify ID of the playlistlimit
(number, optional): Maximum number of tracks to return (default: 100)offset
(number, optional): Index of the first track to return (default: 0)
- Returns: Array of tracks with their IDs, names, artists, album, duration, and added date
- Example:
getPlaylistTracks("37i9dQZEVXcJZyENOWUFo7")
Play / Create Operations
-
playMusic
- Description: Start playing a track, album, artist, or playlist on Spotify
- 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 playdeviceId
(string, optional): ID of the device to play on
- Returns: Success status
- Example:
playMusic({ uri: "spotify:track:6rqhFgbbKwnb9MLmUQDhG6" })
- Alternative:
playMusic({ type: "track", id: "6rqhFgbbKwnb9MLmUQDhG6" })
-
pausePlayback
- Description: Pause the currently playing track on Spotify
- Parameters:
deviceId
(string, optional): ID of the device to pause
- Returns: Success status
- Example:
pausePlayback()
-
skipToNext
- Description: Skip to the next track in the current playback queue
- Parameters:
deviceId
(string, optional): ID of the device
- Returns: Success status
- Example:
skipToNext()
-
skipToPrevious
- Description: Skip to the previous track in the current playback queue
- Parameters:
deviceId
(string, optional): ID of the device
- Returns: Success status
- Example:
skipToPrevious()
-
createPlaylist
- Description: Create a new playlist on Spotify
- Parameters:
name
(string): Name for the new playlistdescription
(string, optional): Description for the playlistpublic
(boolean, optional): Whether the playlist should be public (default: false)
- Returns: Object with the new playlist's ID and URL
- Example:
createPlaylist({ name: "Workout Mix", description: "Songs to get pumped up", public: false })
-
addTracksToPlaylist
- Description: Add tracks to an existing Spotify playlist
- Parameters:
playlistId
(string): ID of the playlisttrackUris
(array): Array of track URIs or IDs to addposition
(number, optional): Position to insert tracks
- Returns: Success status and snapshot ID
- Example:
addTracksToPlaylist({ playlistId: "3cEYpjA9oz9GiPac4AsH4n", trackUris: ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh"] })
-
addToQueue
- 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 queuedeviceId
(string, optional): ID of the device to queue on
- Returns: Success status
- Example:
addToQueue({ uri: "spotify:track:6rqhFgbbKwnb9MLmUQDhG6" })
- Alternative:
addToQueue({ type: "track", id: "6rqhFgbbKwnb9MLmUQDhG6" })
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
- Go to the Spotify Developer Dashboard
- Log in with your Spotify account
- Click the "Create an App" button
- Fill in the app name and description
- Accept the Terms of Service and click "Create"
- In your new app's dashboard, you'll see your Client ID
- Click "Show Client Secret" to reveal your Client Secret
- Click "Edit Settings" and add a Redirect URI (e.g.,
http://localhost:8888/callback
) - 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://localhost:8888/callback"
}
Authentication Process
The Spotify API uses OAuth 2.0 for authentication. Follow these steps to authenticate your application:
- Run the authentication script:
npm run auth
-
The script will generate an authorization URL. Open this URL in your web browser.
-
You'll be prompted to log in to Spotify and authorize your application.
-
After authorization, Spotify will redirect you to your specified redirect URI with a code parameter in the URL.
-
The authentication script will automatically exchange this code for access and refresh tokens.
-
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
}
- The server will automatically refresh the access token when needed, using the refresh token.
Integrating with Claude Desktop and Cursor
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.