Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

AI-powered control for Apple Logic Pro via MCP, enabling transport, tracks, plugins, MIDI, project, and mixer control through natural language.

README.md

Logic Pro MCP Server

AI-powered control for Apple Logic Pro via the Model Context Protocol.

An MCP server that lets AI assistants (Claude, etc.) control Logic Pro through AppleScript, macOS Accessibility API, and virtual MIDI.

Features

| Category | Tools | Method | |----------|-------|--------| | Transport | Play, Stop, Record, Tempo, Cycle, Metronome | AppleScript/Key Commands | | Tracks | List, Create, Select, Rename, Delete, Mute, Solo | Accessibility + AppleScript | | Plugins | List installed, Load, Read/Write parameters, Presets | auval + Accessibility API | | MIDI | Send notes, Chords, CC, Patterns | Virtual MIDI Port (node-midi) | | Project | Open, Save, Close, Bounce, Undo/Redo | AppleScript | | Mixer | Show, Channel strip info, Load strip settings | Accessibility |

35 tools total for comprehensive Logic Pro control.

Prerequisites

  • macOS (Sonoma 14+ recommended)
  • Node.js 18+
  • Swift 5.9+ (included with Xcode/Command Line Tools)
  • Logic Pro installed and running

Installation

# Clone and install
git clone <repo-url>
cd logic-pro-mcp
npm install

# Build TypeScript
npm run build

# Build Swift accessibility helper
npm run build:swift

macOS Setup

1. Grant Accessibility Access

System Settings → Privacy & Security → Accessibility

Add your terminal app (Terminal.app, iTerm2, or the Claude Desktop app) to the allowed list.

2. Logic Pro Settings

Open Logic Pro → Settings → Accessibility → Enable "Open plug-in windows in Controls view by default"

This exposes plugin parameters to the Accessibility API.

Claude Desktop Configuration

Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "logic-pro": {
      "command": "node",
      "args": ["/absolute/path/to/logic-pro-mcp/dist/index.js"]
    }
  }
}

Usage Examples

Once connected, you can ask Claude things like:

  • "List all tracks in my project"
  • "Create a new software instrument track"
  • "Load a Channel EQ on the selected track"
  • "What are the compressor parameters on track 2?"
  • "Set the tempo to 128 BPM"
  • "Send a C major chord via MIDI"
  • "Bounce my project"

Architecture

Claude AI ←→ MCP Server (stdio) ←→ Logic Pro
                  │
    ┌─────────────┼─────────────┐
    ▼             ▼             ▼
AppleScript   Accessibility   Virtual MIDI
(osascript)   (Swift Helper)  (node-midi)

Project Structure

logic-pro-mcp/
├── src/
│   ├── index.ts                  # MCP server entry
│   ├── bridges/
│   │   ├── applescript.ts        # osascript wrapper
│   │   ├── accessibility.ts      # Swift helper wrapper
│   │   └── midi-bridge.ts        # node-midi virtual port
│   └── tools/
│       ├── transport.ts          # Play, Stop, Record, Tempo
│       ├── tracks.ts             # Track management
│       ├── plugins.ts            # Plugin listing & control
│       ├── midi.ts               # MIDI note/CC sending
│       ├── project.ts            # Project management
│       └── mixer.ts              # Mixer controls
├── swift-helper/
│   ├── Package.swift
│   └── Sources/LogicAccessibility/
│       └── main.swift            # AXUIElement interaction
├── package.json
├── tsconfig.json
└── README.md

Limitations

  • Logic Pro has no public API – this MCP uses system-level automation
  • Some UI scripting operations are timing-sensitive (short delays are used)
  • Plugin parameter access requires the Controls view to be enabled
  • The Swift accessibility helper must be compiled before first use
  • Accessibility permissions must be explicitly granted by the user

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.