Skip to main content
Glama

itunes_pause

Pause Apple Music playback on macOS. Use this MCP command to temporarily stop music without closing the application.

Instructions

Pause playback in Music (iTunes).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'itunes_pause' tool, decorated with @mcp.tool() for registration. It runs an AppleScript to pause playback in the Music (iTunes) application.
    @mcp.tool() def itunes_pause() -> str: """Pause playback in Music (iTunes).""" script = 'tell application "Music" to pause' return run_applescript(script)
  • Supporting utility function that executes AppleScript via subprocess, used by the itunes_pause handler.
    def run_applescript(script: str) -> str: """Execute an AppleScript command via osascript and return its output.""" result = subprocess.run(["osascript", "-e", script], capture_output=True, text=True) if result.returncode != 0: return f"Error: {result.stderr.strip()}" return result.stdout.strip()

Latest Blog Posts

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/kennethreitz/mcp-applemusic'

If you have feedback or need assistance with the MCP directory API, please join our Discord server