Skip to content
VS Code

mcp apple music for VS Code

io.github.cifero74/mcp-apple-music

Apple Music MCP server — search catalog, manage playlists, and access your library via Claude.

client:VS Code transport:stdio runtime:pypi

Install mcp apple music in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apple-team-id",
      "description": "APPLE_TEAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-key-id",
      "description": "APPLE_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-private-key",
      "description": "APPLE_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-music-user-token",
      "description": "APPLE_MUSIC_USER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-storefront",
      "description": "APPLE_STOREFRONT",
      "password": true
    }
  ],
  "servers": {
    "mcp-apple-music": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-apple-music-server"
      ],
      "env": {
        "APPLE_TEAM_ID": "${input:apple-team-id}",
        "APPLE_KEY_ID": "${input:apple-key-id}",
        "APPLE_PRIVATE_KEY": "${input:apple-private-key}",
        "APPLE_MUSIC_USER_TOKEN": "${input:apple-music-user-token}",
        "APPLE_STOREFRONT": "${input:apple-storefront}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp apple music in other clients