The Spotify MCP server allows Claude to interact with your Spotify account, enabling capabilities like searching songs, creating playlists, adding tracks, and getting personalized recommendations - all through natural language conversations.
http://localhost:8888/callback
as a Redirect URI# Clone or download the project first
cd spotify-mcp-server
# Install dependencies
npm install
Edit the spotify-auth.js
file with your credentials:
// Replace these with your Spotify app credentials
const CLIENT_ID = "your_client_id_here";
const CLIENT_SECRET = "your_client_secret_here";
Then run the authentication script:
node spotify-auth.js
This will:
secrets.json
npm run build
Edit your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"spotify": {
"command": "node",
"args": ["/full/path/to/spotify-mcp-server/build/spotify-mcp-server.js"]
}
}
}
Replace /full/path/to/spotify-mcp-server
with the actual path to your project directory.
Close and reopen Claude Desktop to apply the new configuration.
The server provides several tools for interacting with Spotify:
First, you need to authenticate with Spotify in each new conversation with Claude:
I want to connect to my Spotify account. Here are my credentials from secrets.json:
Tool: set-spotify-credentials
Parameters:
{
"clientId": "your_client_id",
"clientSecret": "your_client_secret",
"accessToken": "your_access_token",
"refreshToken": "your_refresh_token"
}
Check your Spotify account:
Can you check who I'm logged in as on Spotify?
Tool: get-current-user
Parameters: {}
Search for songs:
Search for songs by Taylor Swift
Tool: search-tracks
Parameters:
{
"query": "Taylor Swift",
"limit": 5
}
Create a playlist:
Create a new playlist called "My Favorites"
Tool: create-playlist
Parameters:
{
"name": "My Favorites",
"description": "Created with Claude and the Spotify MCP server"
}
You can also ask Claude to perform more complex operations that combine multiple tools:
Creating a playlist with songs:
I want to create a workout playlist with energetic songs. First, search for some high-energy songs. Then create a playlist called "Workout Mix" and add those songs to it.
Getting recommendations based on favorites:
I like the song "Blinding Lights" by The Weeknd. Can you search for it, then find similar songs, and create a playlist with those recommendations?
set-spotify-credentials
toolRemember that the server stores credentials in memory only, so you'll need to set credentials at the beginning of each new conversation with Claude.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.