Spotify MCP Server

Spotify MCP Server

A Model Context Protocol (MCP) server that provides Spotify integration, allowing AI assistants and applications to interact with Spotify's music streaming service.

Category
访问服务器

README

Spotify MCP Server

A Model Context Protocol (MCP) server that provides Spotify integration, allowing AI assistants and applications to interact with Spotify's music streaming service.

Features

Artist Tools

  • Search Artists - Search for artists by name
  • Get Artist - Get detailed information about a specific artist
  • Get Artist Albums - Get all albums for an artist
  • Get Artist Top Tracks - Get an artist's most popular tracks

Album Tools

  • Get Album - Get detailed information about a specific album
  • Get Album Tracks - Get all tracks from an album
  • Get New Releases - Get new album releases

Playlist Tools

  • Create Playlist - Create new playlists
  • Add Tracks to Playlist - Add tracks to existing playlists
  • Get User Playlists - Get current user's playlists

User Tools

  • Get User Top Artists - Get user's most listened to artists
  • Get User Top Tracks - Get user's most listened to tracks

Installation

For Claude Desktop Users (Recommended)

The easiest way to use this server with Claude Desktop is via PyPI:

  1. Get your Spotify API credentials (see Spotify API Setup below)
  2. Add to your Claude Desktop config at ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
  "mcpServers": {
    "Spotify": {
      "command": "uvx",
      "args": ["spotify-mcp-server"],
      "env": {
        "SPOTIFY_CLIENT_ID": "your_client_id_here",
        "SPOTIFY_CLIENT_SECRET": "your_client_secret_here",
        "SPOTIFY_REDIRECT_URI": "http://127.0.0.1:8888/callback"
      }
    }
  }
}
  1. Restart Claude Desktop
  2. On first use, authenticate with Spotify when prompted

Development Setup

Prerequisites

  • Python 3.10+
  • Spotify Developer Account
  • MCP Client (like Claude Desktop, Cursor, etc.)

Setup

1. Install Dependencies

# Using uv (recommended)
uv sync

# Or using pip
pip install -r requirements.txt

2. Spotify API Setup {#spotify-api-setup}

  1. Go to Spotify Developer Dashboard
  2. Create a new application
  3. Add http://localhost:8888/callback to your app's Redirect URIs
  4. Copy your Client ID and Client Secret

3. Environment Configuration

Create a .env file in the project root:

SPOTIFY_CLIENT_ID=your_client_id_here
SPOTIFY_CLIENT_SECRET=your_client_secret_here
SPOTIFY_REDIRECT_URI=http://localhost:8888/callback

4. Authentication

On first run, the server will open a browser window for Spotify authentication. Follow the OAuth flow to authorize the application.

Usage

Running the Server

# Development mode with inspector
mcp dev spotify_mcp_server.py

# Or run directly
python spotify_mcp_server.py

Available Tools

Artist Management

# Search for artists
search_artists(query="The Beatles", limit=10)

# Get artist details
get_artist(artist_id="3WrFJ7ztbogyGnTHbHJFl2")

# Get artist albums
get_artist_albums(artist_id="3WrFJ7ztbogyGnTHbHJFl2", include_groups="album,single")

# Get artist top tracks
get_artist_top_tracks(artist_id="3WrFJ7ztbogyGnTHbHJFl2", market="US")

Album Management

# Get album details
get_album(album_id="4aawyAB9vmqN3uQ7FjRGTy", market="US")

# Get album tracks
get_album_tracks(album_id="4aawyAB9vmqN3uQ7FjRGTy", limit=20)

# Get new releases
get_new_releases(country="US", limit=20)

Playlist Management

# Create a new playlist
create_playlist(name="My New Playlist", description="A great playlist", public=False)

# Add tracks to playlist
add_tracks_to_playlist(playlist_id="playlist_id", track_uris=["spotify:track:track_id"])

# Get user playlists
get_user_playlists()

User Data

# Get user's top artists
get_user_top_artists(time_range="medium_term", limit=20)

# Get user's top tracks
get_user_top_tracks(time_range="short_term", limit=10)

Project Structure

spotify-mcp/
├── spotify_mcp_server.py    # Main MCP server
├── mcp_tools/              # Tool modules
│   ├── __init__.py
│   ├── artist_tools.py     # Artist-related tools
│   ├── playlist_tools.py   # Playlist-related tools
│   ├── albums.py          # Album-related tools
│   └── user_tools.py      # User-related tools
├── .env                    # Environment variables
├── .spotify_cache         # Spotify OAuth cache
├── requirements.txt        # Python dependencies
└── README.md             # This file

API Reference

Artist Tools

search_artists

Search for artists on Spotify.

Parameters:

  • query (str): Search query for artist name
  • limit (int, optional): Maximum number of results (default: 10, max: 50)

Returns:

  • List of artists with ID, name, popularity, followers, genres, and Spotify URL

get_artist

Get detailed information about an artist.

Parameters:

  • artist_id (str): Spotify artist ID

Returns:

  • Detailed artist information including images, genres, and popularity

get_artist_albums

Get albums for an artist.

Parameters:

  • artist_id (str): Spotify artist ID
  • include_groups (str, optional): Album types to include (default: "album,single")
  • limit (int, optional): Maximum albums to return (default: 20, max: 50)

Returns:

  • List of albums with details including release date, track count, and cover images

get_artist_top_tracks

Get top tracks for an artist.

Parameters:

  • artist_id (str): Spotify artist ID
  • market (str, optional): Market/country code (default: "US")

Returns:

  • List of top tracks with popularity, duration, and album information

Album Tools

get_album

Get detailed information about an album.

Parameters:

  • album_id (str): Spotify album ID
  • market (str, optional): Market/country code (default: "US")

Returns:

  • Detailed album information including artists, images, and genres

get_album_tracks

Get tracks from an album.

Parameters:

  • album_id (str): Spotify album ID
  • market (str, optional): Market/country code (default: "US")
  • limit (int, optional): Maximum tracks to return (default: 20, max: 50)
  • offset (int, optional): Starting index (default: 0)

Returns:

  • List of tracks with track number, duration, and artist information

get_new_releases

Get new album releases.

Parameters:

  • country (str, optional): Country code (default: "US")
  • limit (int, optional): Maximum albums to return (default: 20, max: 50)
  • offset (int, optional): Starting index (default: 0)

Returns:

  • List of new release albums with artist and image information

Playlist Tools

create_playlist

Create a new Spotify playlist.

Parameters:

  • name (str): Name of the playlist
  • description (str, optional): Description of the playlist
  • public (bool, optional): Whether the playlist is public (default: False)
  • collaborative (bool, optional): Whether the playlist is collaborative (default: False)

Returns:

  • Playlist information including ID, name, and Spotify URL

add_tracks_to_playlist

Add tracks to an existing playlist.

Parameters:

  • playlist_id (str): Spotify playlist ID
  • track_uris (List[str]): List of Spotify track URIs

Returns:

  • Success status and number of tracks added

get_user_playlists

Get current user's playlists.

Parameters:

  • None

Returns:

  • List of user's playlists with details including track count and privacy settings

User Tools

get_user_top_artists

Get user's most listened to artists from Spotify.

Parameters:

  • time_range (str, optional): Time period for top artists (default: "medium_term")
    • "short_term": Last 4 weeks
    • "medium_term": Last 6 months
    • "long_term": Several years
  • limit (int, optional): Maximum number of artists to return (default: 20, max: 50)
  • offset (int, optional): Index of the first artist to return (default: 0)

Returns:

  • List of top artists with ID, name, popularity, followers, genres, and Spotify URL

get_user_top_tracks

Get user's most listened to tracks from Spotify.

Parameters:

  • time_range (str, optional): Time period for top tracks (default: "medium_term")
    • "short_term": Last 4 weeks
    • "medium_term": Last 6 months
    • "long_term": Several years
  • limit (int, optional): Maximum number of tracks to return (default: 20, max: 50)
  • offset (int, optional): Index of the first track to return (default: 0)

Returns:

  • List of top tracks with ID, name, album info, artists, popularity, duration, and Spotify URL

Development

Adding New Tools

  1. Create a new function in the appropriate tool module (artist_tools.py, playlist_tools.py, albums.py, or user_tools.py)
  2. Add the function to the __init__.py exports
  3. Create a wrapper function in spotify_mcp_server.py
  4. Copy the docstring and register the tool

Testing

# Run the server in development mode
mcp dev spotify_mcp_server.py

# The MCP Inspector will open at http://localhost:6274
# Use it to test your tools interactively

Troubleshooting

Authentication Issues

  • Ensure your .env file has the correct Spotify credentials
  • Check that your redirect URI matches exactly: http://localhost:8888/callback
  • Clear the .spotify_cache file if you encounter token issues

API Rate Limits

  • Spotify has rate limits on API calls
  • The server includes error handling for rate limit responses
  • Consider implementing caching for frequently accessed data

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选