Apple Music Remote MCP
Provides read-only access to personal Apple Music playlists and library, enabling users to list, search, and browse playlists, folders, tracks, favorites, recently played, and recently added items.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Apple Music Remote MCPshow me my recently played songs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Apple Music Remote MCP v0.2 — playlist writes
This version upgrades the earlier read-only proxy so GPT can modify Apple Music playlists while keeping read operations and destructive operations separated.
Tools exposed
playlist_read — read-only
Actions:
list
folders
tracks
search
pathplaylist_edit — write, non-destructive
Actions:
create
add
copy
move
renameplaylist_remove — destructive write
Action:
removeThis removes tracks from a playlist.
playlist_delete — destructive write, disabled by default
Action:
deleteTo expose it, set:
$env:ALLOW_PLAYLIST_DELETE = "1"before starting remote_mcp.py.
library_read
Personal library reads only.
catalog_read
Apple Music catalog search/resolution. This is useful for identifying the exact recording/edition before adding it to a playlist.
Related MCP server: Sound
Why the tools are split
MCP has behavioural annotations such as:
readOnlyHintdestructiveHintidempotentHint
Clients such as ChatGPT can use these hints to decide whether a call needs user approval.
A single upstream playlist tool mixes read and write actions, so this proxy
splits it into multiple tools with accurate annotations.
The annotations are not the security boundary. Server-side action allowlists are enforced again when each call arrives.
Important security rule
Do not expose this write-enabled version on a permanent public hostname with "No authentication" for long-term use.
If the endpoint is unauthenticated, anyone who obtains the MCP URL could invoke the exposed write tools while the server is online.
Recommended workflow:
Test the new write tools locally.
Verify ChatGPT can scan and classify them.
Add OAuth/authentication before keeping writes enabled on a fixed public URL.
Playlist deletion is additionally disabled by default.
Run locally
Activate your existing virtual environment:
.\.venv\Scripts\Activate.ps1
pip install -r requirements.txtStart the server:
python remote_mcp.py --port 8787Then in another PowerShell:
.\.venv\Scripts\Activate.ps1
python test_mcp.pyExpected tools:
playlist_read
playlist_edit
playlist_remove
library_read
catalog_readplaylist_delete should NOT appear unless you explicitly enable it.
The test only performs a read (playlist_read(action="list")), so running the
test does not modify your Apple Music account.
Safe first write test
After the server is connected to a trusted MCP client, use a disposable playlist rather than an existing music collection.
Recommended sequence:
1. Create a playlist named "MCP Write Test".
2. Add one clearly identified track to "MCP Write Test".
3. Read the playlist back and verify the track.
4. Rename it to "MCP Write Test 2".Do not enable playlist_delete until ordinary writes have been verified.
Re-scan in ChatGPT
After changing the MCP tool list, ChatGPT needs to refresh/re-scan the app's tools. The existing server URL does not need to change.
Expected classification:
playlist_read read-only
playlist_edit write
playlist_remove destructive write
library_read read-only
catalog_read read-onlyIf you later enable playlist deletion, re-scan again so the new tool is discovered.
Apple Music constraints on Windows/API mode
The upstream applemusic-mcp can create, add, remove, rename, move and delete
through the Apple Music API/web-player rails, but Apple imposes an ownership
constraint: a playlist created by Music.app may not be writable from the API or
web-player client that did not create it.
If an existing playlist rejects an edit, test with a playlist created through the MCP itself. That distinguishes an Apple playlist-ownership limitation from a proxy problem.
For ambiguous track names, prefer:
catalog_read(action="search" or "resolve")or an upstream-supported dry run:
playlist_edit(action="add", ..., dry_run=True)before the real add.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
- SomviaOAuthapp.somvia
Private Apple Health metrics and workout detail for ChatGPT, Claude, and any MCP client.
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceIntegrates Apple Music with MCP clients to search the global catalog, manage personal playlists, and access library data. It enables users to perform actions like creating playlists, adding tracks, and viewing recommendations through natural language commands.1-
- AlicenseNot gradedqualityCmaintenanceApple Music playback control, library search, playlist management, and queue operations via MCP.2MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for Apple Music that lets AI assistants manage playlists, control playback, and browse the music library.96MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for controlling Apple Music on macOS via AppleScript, enabling playlist management, playback control, and library search through natural language.71MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Xinyue-Zhang01/applemusic_remote_mcp_prototype'
If you have feedback or need assistance with the MCP directory API, please join our Discord server