MCP Claude Spotify MCP Server

Model Context Protocol server for Spotify using Claude Desktop

Local serverstdioTypeScript

What is the MCP Claude Spotify MCP server?

MCP Claude Spotify MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Model Context Protocol server for Spotify using Claude Desktop.

What you get

  • Spotify authentication
  • Search for tracks, albums, artists, and playlists
  • Playback control (play, pause, next, previous)
  • Full playlist management (create, update, delete, reorder tracks, manage cover images)
  • Get personalized recommendations
  • Access user's top played tracks over different time periods

What the assistant can call

Once MCP Claude Spotify is connected, these are the calls the assistant has available:

  • Configuration — Edit this file to add the Spotify MCP configuration. If the file doesn't exist, create it:
  • Authentication — The Authentication tool exposed by this server
  • Search — The Search tool exposed by this server

Setting it up

Installation goes through your MCP client rather than a global install: point it at @smithery/cli on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration and credentials

You will need 2 environment variables: SPOTIFY_CLIENT_ID, SPOTIFY_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js 16 or higher - Spotify account - Claude Desktop - Spotify API credentials (Client ID and Client Secret)

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Claude Spotify's toolset — Configuration, Authentication, Search — is a fair guide to whether it matches your workflow. It is maintained by imprvhub; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP Claude Spotify's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp claude spotify mcp server does with a few real requests.

Available tools

ToolWhat it does
ConfigurationEdit this file to add the Spotify MCP configuration. If the file doesn't exist, create it:
AuthenticationThe Authentication tool exposed by this server.
SearchThe Search tool exposed by this server.

How to install the MCP Claude Spotify MCP server

{
  "mcpServers": {
    "claude-spotify": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "SPOTIFY_CLIENT_ID": "your-value",
        "SPOTIFY_CLIENT_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 16 or higher - Spotify account - Claude Desktop - Spotify API credentials (Client ID and Client Secret)
VariableDescriptionRequired
SPOTIFY_CLIENT_IDConfiguration value read at startup.Optional
SPOTIFY_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Claude Spotify to Configuration.
  • Use MCP Claude Spotify to Authentication.
  • Use MCP Claude Spotify to Search.

Frequently asked questions

It connects MCP Claude Spotify to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Configuration, Authentication, Search) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Claude Spotify directly.