drio
Open app

MCP_Server_Spotify

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP_Server_Spotify is a server application designed to integrate with Spotify, allowing users to manage and control their Spotify music experience programmatically.

To use MCP_Server_Spotify, clone the repository from GitHub, set up the server environment, and follow the instructions in the README to connect it with your Spotify account.

  • Programmatic control of Spotify playback - Integration with various music management tools - Customizable server settings for user preferences
  1. Automating music playback based on user-defined triggers.
  2. Integrating Spotify with other applications for enhanced music experiences.
  3. Creating a personalized music server for home automation systems.

Add to your AI client

Use these steps to connect MCP_Server_Spotify in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-spotify-hashim9184": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-spotify-hashim9184"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-spotify-hashim9184": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-spotify-hashim9184"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-spotify-hashim9184": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-spotify-hashim9184"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-spotify-hashim9184": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-spotify-hashim9184"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-spotify-hashim9184": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-spotify-hashim9184"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-spotify-hashim9184": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-spotify-hashim9184"
      ]
    }
  }
}

FAQ

Can MCP_Server_Spotify control multiple Spotify accounts?

No, it is designed to work with a single Spotify account at a time.

Is MCP_Server_Spotify free to use?

Yes! MCP_Server_Spotify is open-source and free to use.

What programming languages are required to run MCP_Server_Spotify?

The server is primarily built using JavaScript and Node.js.