Spotify MCP Server

MCP server for bulk Spotify operations - batch playlist creation, exports, management

Remote serverstreamable-httpPython

What is the Spotify MCP server?

MCP server for bulk Spotify operations - batch playlist creation, exports, management. Exposed over MCP by the spotify mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

A Model Context Protocol (MCP) server for bulk Spotify operations - batch playlist creation, library exports, and large-scale library management.

Its toolset

Everything the assistant can do here goes through one of these:

  • Search — The Search tool exposed by this server
  • Playlists — The Playlists tool exposed by this server
  • Utilities — The Utilities tool exposed by this server

Configuration

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.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

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. Spotify's toolset — Search, Playlists, Utilities — is a fair guide to whether it matches your workflow. It is maintained by khglynn; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • 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 spotify mcp server does with a few real requests.

Available tools

ToolWhat it does
SearchThe Search tool exposed by this server.
PlaylistsThe Playlists tool exposed by this server.
UtilitiesThe Utilities tool exposed by this server.

How to install the Spotify MCP server

{
  "mcpServers": {
    "spotify-bulk-actions": {
      "command": "uvx",
      "args": ["spotify-bulk-actions-mcp"],
      "env": {
        "SPOTIFY_CLIENT_ID": "your-value",
        "SPOTIFY_CLIENT_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SPOTIFY_CLIENT_IDConfiguration value read at startup.Optional
SPOTIFY_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Spotify to Search.
  • Use Spotify to Playlists.
  • Use Spotify to Utilities.

Frequently asked questions

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