Skip to content
MCP-Bridge
Security

Spotify Web API Claude Desktop Config

Add the Spotify Web API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "spotify-com": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/spotify-com"
      ],
      "env": {
        "SPOTIFY_WEB_API_API_KEY": "your_spotify_web_api_api_key"
      }
    }
  }
}

Environment Variables

SPOTIFY_WEB_API_API_KEY

Replace your_spotify_web_api_api_key with your actual spotify web api api key

Endpoints

GET/albums

Get Several Albums

GET/albums/{id}

Get Album

GET/albums/{id}/tracks

Get Album Tracks

GET/artists

Get Several Artists

GET/artists/{id}

Get Artist

GET/artists/{id}/albums

Get Artist's Albums

GET/artists/{id}/related-artists

Get Artist's Related Artists

GET/artists/{id}/top-tracks

Get Artist's Top Tracks

GET/audio-analysis/{id}

Get Track's Audio Analysis

GET/audio-features

Get Tracks' Audio Features