spotify-mcp-server
Connects AI assistants to the Spotify Web API, enabling playback control, search, and recommendations.
README
Spotify MCP Server
A Python-based Model Context Protocol (MCP) server that connects your AI assistant (Claude Desktop, Cursor, etc.) directly to the Spotify Web API. This allows the AI to inspect your current playback state, search for music, trigger recommendations, and control your player (play, pause, skip, adjust volume, queue tracks).
Built using Python 3.12+, the official FastMCP SDK, uv for dependency/project management, and fully type-annotated with strict mypy validation.
Features
🛠️ Exposed Tools
get_current_playback: Retrieves details about your active device, current volume, track name, artist, album, and progress.pause_playback/resume_playback: Pauses or resumes playback.skip_next/skip_previous: Skips to the next or previous track.set_volume: Adjusts player volume (0 to 100).add_to_queue: Appends a specific track URI to the queue.search_spotify: Searches for tracks, albums, artists, or playlists.play_by_search: Searches for an item and immediately starts playing the top result.get_recommendations: Fetches track recommendations based on seed genres (e.g.lofi,chill).
📊 Exposed Resources
spotify://status: Exposes the text description of the currently playing track.
💬 Exposed Prompts
vibe_check: Guides the AI to curate and play a playlist matching your current coding task, energy level, and mood.
Prerequisites
- Spotify Premium: The Spotify Web API Player endpoints require a Spotify Premium subscription to accept control commands.
uvPackage Manager: Installuvif you haven't already:curl -LsSf https://astral.sh/uv/install.sh | sh
Setup & Installation
1. Register a Spotify Developer App
- Go to the Spotify Developer Dashboard and log in.
- Click Create App and fill in the details:
- App name: E.g.
My Local MCP Server - Redirect URI:
http://127.0.0.1:8888/callback(Crucial for the authentication script to run successfully)
- App name: E.g.
- Under the app settings, copy your Client ID and Client Secret.
2. Configure Environment Secrets
Create a .env file in the root of this project:
cp .env.example .env
Open .env and fill in your client keys:
SPOTIFY_CLIENT_ID=your_client_id_here
SPOTIFY_CLIENT_SECRET=your_client_secret_here
SPOTIFY_REDIRECT_PORT=8888
3. Generate Spotify Refresh Token
Run the built-in OAuth helper script:
uv run get_token.py
- This script spins up a temporary web server on
127.0.0.1:8888and opens your default web browser to authorize the required permissions (user-read-playback-state,user-modify-playback-state,user-read-currently-playing). - After clicking "Agree", you will see a success message. Return to the terminal and copy the printed
SPOTIFY_REFRESH_TOKENto your.envfile:
SPOTIFY_REFRESH_TOKEN=your_generated_refresh_token_here
Development & Type Checking
Ensure the codebase is type-safe and conforms to the static analysis rules:
uv run mypy .
MCP Client Configuration
To register this server with your AI client, add the following configuration block:
Claude Desktop
Add this to your claude_desktop_config.json (usually located at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS).
Option A: Hiding Your Absolute Path (Recommended)
To keep your personal home directory paths private and avoid exposing them in configuration files, you can use an environment variable (e.g., SPOTIFY_MCP_DIR).
- Export the variable in your shell profile (e.g.,
~/.zshrcor~/.bash_profile):export SPOTIFY_MCP_DIR="/path/to/spotify-mcp-server" - Configure Claude Desktop to execute
uvvia a login shell, which resolves the environment variable dynamically:(If you are using bash, replace{ "mcpServers": { "spotify": { "command": "zsh", "args": [ "-l", "-c", "uv --directory \"$SPOTIFY_MCP_DIR\" run main.py" ] } } }"command": "zsh"with"command": "bash"and load profile accordingly)
Option B: Standard Direct Configuration
If you do not mind exposing your directory path, configure the absolute path directly:
{
"mcpServers": {
"spotify": {
"command": "uv",
"args": [
"--directory",
"/path/to/spotify-mcp-server",
"run",
"main.py"
]
}
}
}
(Note: Replace /path/to/spotify-mcp-server with the actual absolute path to this repository on your system)
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.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.