Description

Apple MCP Server provides a lightweight server for controlling macOS applications via AppleScript, with built-in tools for managing Spotify playback and opening iTerm. Developed by bhwang, this implementation enables programmatic interaction with specific macOS apps through simple, predefined commands like playing music or launching terminal windows. The server uses the Model Context Protocol SDK to expose these system control capabilities as callable tools.

Installation

git clone https://github.com/gnosis23/apple-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "apple-automation": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}