AirMCP is a comprehensive MCP server that connects AI assistants to the Apple ecosystem on macOS, enabling automation and control across virtually all Apple apps and system functions.
Apple App Automation
Notes: List, search, create, update, delete, move notes; manage folders; bulk scan and compare notes
Reminders: Full CRUD on reminders and lists; search, filter, complete, and create recurring reminders (macOS 26+ Swift bridge)
Calendar: List/search/create/update/delete events; view attendees; recurring events (macOS 26+ Swift bridge)
Contacts, Mail, Messages: Read/send mail and messages; manage contacts
Music, Photos, TV, Podcasts: Playback control, import/delete photos, manage media
Finder & Safari: File and browser automation
System Control
Clipboard, volume, mute, dark/light mode, display brightness, screen info
Screenshots (full screen, window, or selection) and screen recording
WiFi toggle/status, Bluetooth device listing, battery status
Running app management, system notifications, Do Not Disturb/Focus mode
UI Automation
Open apps, simulate clicks, type text, send key combos, scroll, read accessibility trees
Siri Shortcuts
List, search, run, create, delete, export, import, duplicate, and edit shortcuts
Apple Intelligence (macOS 26+ / Apple Silicon)
On-device text summarization, rewriting, proofreading, generation, structured output, content tagging, and multi-turn AI chat
Semantic Search
Build a local vector index from Notes, Calendar, Reminders, and Mail
Search by meaning across apps; find semantically related items by ID
Apple Maps
Search locations, get directions, drop pins, search nearby places, share locations
Live Data via MCP Resources
Real-time access to recent notes, today's events, overdue reminders, now-playing music, clipboard content, unread mail counts
Pre-built AI Workflows (Prompts)
Multi-step tasks: daily/weekly reviews, meeting prep, note/reminder organization, developer sessions (debug-loop, idea-to-task), Safari research integration
Safety & Configuration
Human-in-the-loop (HITL) approval for destructive operations
Safety annotations (readOnly, destructive, idempotent) on all tools
Module-level enable/disable control
Stdio (local) and HTTP/SSE (remote/multi-client) transport modes
Interactive setup wizard, one-click permission setup, native menubar app; compatible with Claude Desktop, Cursor, and Windsurf
Enables programmatic access to core Apple ecosystem applications including Notes, Reminders, Calendar, Contacts, and Mail.
Provides tools for controlling playback, searching tracks, and managing playlists within Apple Music.
Allows interaction with the Apple TV app and related ecosystem components.
Provides capabilities for interacting with the Apple Messages app to manage communications.
Offers comprehensive system-level tools for macOS, including Finder operations, clipboard management, and system settings control.
Enables browser automation for Safari, allowing users to list tabs, read page content, and execute JavaScript.
AirMCP
MCP server for the entire Apple ecosystem — Notes, Reminders, Calendar, Contacts, Mail, Messages, Music, Finder, Safari, System, Photos, Shortcuts, Apple Intelligence, TV, Screen Capture, Maps, Podcasts, Weather, Pages, Numbers, Keynote, Location, and Bluetooth. Connect any AI to your Mac.
Available in multiple languages at the project landing page.
Features
252 tools (25 modules) — Apple app CRUD + system control + Apple Intelligence + UI Automation + Screen Capture + Maps + Podcasts + Weather + iWork (Pages/Numbers/Keynote) + Google Workspace + dynamic shortcuts
30 prompts — per-app workflows (notes, calendar, reminders, shortcuts) + cross-module + developer workflows + YAML skills
11 MCP resources — Notes, Calendar, Reminders, Music, Mail, System live data URIs
JXA + Swift bridge — JXA for basic automation, EventKit/PhotoKit for advanced features
Recurring events/reminders — EventKit recurrence rules (macOS 26+ Swift bridge)
Photo import/delete — PhotoKit photo management (macOS 26+ Swift bridge)
Apple Intelligence — On-device summarize, rewrite, proofread (macOS 26+)
Native menubar app — SwiftUI companion with onboarding wizard, auto-start, log viewer, update notifications, permission setup
One-click setup —
setup_permissionstool or menubar app to request all macOS permissions at onceDual transport — stdio (default, safe local) + HTTP/SSE (
--http) for remote agents and registriesSafety annotations — readOnly/destructive hints on all tools
Get Started (2 minutes)
1. Install Node.js
If you don't have Node.js, install it first:
# Using Homebrew (recommended)
brew install node
# Or download from https://nodejs.org (LTS version)2. Run the Setup Wizard
npx airmcp initThis will:
Let you choose which Apple apps to connect (Notes, Calendar, Reminders, etc.)
Automatically configure your MCP client
Save your preferences to
~/.config/airmcp/config.json
3. Restart Your MCP Client
That's it! Your AI can now read your notes, manage reminders, check your calendar, and more.
Troubleshooting
npx airmcp doctorChecks Node.js version, config files, MCP client setup, macOS permissions, and module status — all in one command.
Try It — Talk to Your Mac
Once connected, just ask your AI in natural language. Here are some things you can try:
Everyday
"Read my latest notes and summarize them"
"What's on my calendar today?"
"Show me overdue reminders and reschedule them to tomorrow"
"Play some jazz on Apple Music"
Productivity
"Draft a meeting agenda in Notes, then create calendar events for each topic"
"Find all emails from Alex about the project and create reminders for action items"
"Search my contacts for everyone at Acme Corp"
System Control
"Turn on dark mode, set volume to 50%, and lower brightness"
"Take a screenshot and save it to my Desktop"
"What apps are running right now? Quit anything I'm not using"
Research & Web
"Open the Apple developer docs in Safari and summarize the page"
"Search my Safari tabs for that article I was reading about Swift"
Power User
"Scan nearby Bluetooth devices"
"Get my current GPS coordinates and show the weather here"
"Record my screen for 10 seconds"
"Run my 'Morning Routine' shortcut"
Cross-App Workflows
"Check today's meetings, find related notes, and create a prep checklist in Reminders"
"Search my files for the Q1 report, read it, and draft a summary email to the team"
These are just starting points — with 252 tools across 25 Apple apps, the combinations are endless.
Client Setup
Works with any MCP-compatible client. Examples:
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"airmcp": {
"command": "npx",
"args": ["-y", "airmcp"]
}
}
}Claude Code
claude mcp add airmcp -- npx -y airmcpCursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"airmcp": {
"command": "npx",
"args": ["-y", "airmcp"]
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"airmcp": {
"command": "npx",
"args": ["-y", "airmcp"]
}
}
}Other MCP Clients
Any client that supports the MCP stdio transport can use AirMCP. Use npx -y airmcp as the server command.
Local Development
git clone https://github.com/heznpc/AirMCP.git
cd AirMCP
npm install
npm run build
node dist/index.jsMenubar App (Optional)
A native SwiftUI companion app for server status monitoring and permission setup.
cd app && swift build -c release
# Binary: app/.build/release/AirMCPAppFeatures: onboarding wizard, auto-start on login, log viewer, update notifications, server status, one-click permission setup, MCP client config clipboard copy.
HTTP Mode
HTTP server mode for remote agents, registries, and multi-client setups:
npx airmcp --http --port 3847Endpoint:
POST/GET/DELETE /mcpTransport: Streamable HTTP + SSE (MCP spec 2024-11-05)
Session management via
Mcp-Session-IdheaderDefault port: 3847
Useful for running a Mac Mini as an "always-on AI hub."
Tools
Notes (12 tools)
Tool | Description | Type |
| List all notes with title, folder, dates | read |
| Search by keyword in title and body | read |
| Read full content by ID | read |
| Create a note with HTML body | write |
| Replace entire body | destructive |
| Delete (moved to Recently Deleted) | destructive |
| Move to another folder | destructive |
| List folders with note counts | read |
| Create a new folder | write |
| Bulk scan with metadata and preview | read |
| Compare 2-5 notes side by side | read |
| Move multiple notes at once | destructive |
Reminders (11 tools)
Tool | Description | Type |
| List all lists with counts | read |
| Filter by list/completed | read |
| Full details by ID | read |
| Create with due date/priority | write |
| Update properties | destructive |
| Mark complete/incomplete | write |
| Delete permanently | destructive |
| Search by keyword in name/body | read |
| Create a new reminder list | write |
| Delete a reminder list | destructive |
| Create with recurrence rule (Swift/EventKit) | write |
Calendar (10 tools)
Tool | Description | Type |
| List calendars with name/color | read |
| Events in date range with pagination | read |
| Full details with attendees | read |
| Create with location/description | write |
| Update properties | destructive |
| Delete permanently | destructive |
| Keyword search in date range | read |
| Next N events from now | read |
| All events for today | read |
| Create with recurrence rule (Swift/EventKit) | write |
Contacts (10 tools)
Tool | Description | Type |
| List with email/phone, pagination | read |
| Search by name, email, phone, or org | read |
| Full details (emails, phones, addresses) | read |
| Create with email/phone/org | write |
| Update properties | destructive |
| Delete permanently | destructive |
| List contact groups | read |
| Add email to existing contact | write |
| Add phone to existing contact | write |
| List contacts in a group | read |
Mail (11 tools)
Tool | Description | Type |
| List mailboxes with unread counts | read |
| Recent messages in a mailbox | read |
| Full message content | read |
| Search by subject/sender | read |
| Mark read/unread | write |
| Flag/unflag a message | write |
| Total unread across all mailboxes | read |
| Move message to another mailbox | destructive |
| List all mail accounts | read |
| Compose and send an email | write |
| Reply to an email message | write |
Music (17 tools)
Tool | Description | Type |
| List playlists with track counts | read |
| Tracks in a playlist | read |
| Current track and playback state | read |
| Play, pause, next, previous | write |
| Search by name/artist/album | read |
| Play a specific track by name | write |
| Start playing a playlist | write |
| Detailed track metadata | read |
| Set shuffle and repeat mode | write |
| Create a new playlist | write |
| Add a track to a playlist | write |
| Remove a track from a playlist | destructive |
| Delete an existing playlist | destructive |
| Get rating, favorited, and disliked status | read |
| Set star rating (0-100) for a track | write |
| Mark or unmark a track as favorited | write |
| Mark or unmark a track as disliked | write |
Finder (8 tools)
Tool | Description | Type |
| Spotlight file search | read |
| File info (size, dates, tags) | read |
| Set Finder tags | destructive |
| Recently modified files | read |
| List files in directory | read |
| Move/rename file | destructive |
| Move to Trash | destructive |
| Create new directory | write |
Safari (12 tools)
Tool | Description | Type |
| List tabs across all windows | read |
| Read page text content | read |
| Current active tab URL/title | read |
| Open URL in Safari | write |
| Close a specific tab | destructive |
| Switch to a specific tab | write |
| Execute JavaScript in tab | write |
| Search tabs by title/URL | read |
| List all bookmarks across folders | read |
| Add a bookmark to Safari | write |
| List Reading List items | read |
| Add URL to Reading List | write |
System (27 tools)
Tool | Description | Type |
| Read clipboard content | read |
| Write to clipboard | write |
| Get system volume | read |
| Set system volume | write |
| Toggle dark/light mode | write |
| Get frontmost application | read |
| List running applications | read |
| Display information | read |
| Show system notification | write |
| Capture screenshot (full/window/selection) | write |
| WiFi connection status and signal | read |
| Turn WiFi on or off | write |
| List paired Bluetooth devices | read |
| Battery percentage, charging, time remaining | read |
| Get display brightness level | read |
| Set display brightness level | write |
| Toggle Do Not Disturb on or off | write |
| Put system to sleep | write |
| Keep system awake for N seconds | write |
| Shutdown or restart the system | destructive |
| Launch/activate an application | write |
| Quit a running application | destructive |
| Check if an application is running | read |
| List all windows across all apps | read |
| Move a window to specific coordinates | write |
| Resize a window | write |
| Minimize or restore a window | write |
Photos (9 tools)
Tool | Description | Type |
| List albums | read |
| List photos in album | read |
| Search photos by keyword | read |
| Photo metadata details | read |
| List favorite photos | read |
| Create new album | write |
| Add photo to album | write |
| Import photo from file (Swift/PhotoKit) | write |
| Delete photos by ID (Swift/PhotoKit) | destructive |
Messages (6 tools)
Tool | Description | Type |
| Recent conversations with participants | read |
| Chat details (participants, last update) | read |
| Search by name/participant/handle | read |
| Send iMessage/SMS text | write |
| Send file via iMessage/SMS | write |
| List chat participants | read |
Shortcuts (10 tools)
Tool | Description | Type |
| List available shortcuts | read |
| Run shortcut by name | write |
| Search shortcuts by name | read |
| Shortcut details/actions | read |
| Create a new shortcut via UI automation | write |
| Delete shortcut by name (macOS 13+) | destructive |
| Export shortcut to .shortcut file | write |
| Import shortcut from .shortcut file | write |
| Open shortcut in Shortcuts app for editing | write |
| Duplicate an existing shortcut | write |
UI Automation (10 tools)
Tool | Description | Type |
| Open app and read accessibility summary | read |
| Click element by coordinates or text | write |
| Type text into focused field | write |
| Send key combinations | write |
| Scroll in direction | write |
| Read app accessibility tree | read |
| Query UI elements by role/title/value/identifier | read |
| Find element by locator + perform AX action | write |
| BFS traverse with PID targeting + visible filter | read |
| Compare UI state before/after an action | read |
Apple Intelligence (8 tools)
Requires macOS 26+ with Apple Silicon.
Tool | Description | Type |
| On-device text summarization | read |
| Rewrite with specified tone | read |
| Grammar/spelling correction | read |
| Generate text with custom instructions via on-device AI | read |
| Generate structured JSON output with schema | read |
| Content classification/tagging with confidence | read |
| Named multi-turn on-device AI session | read |
| Check Foundation Model availability | read |
TV (6 tools)
Tool | Description | Type |
| List Apple TV playlists (library) | read |
| List movies/episodes in playlist | read |
| Currently playing content | read |
| Play/pause/next/previous control | write |
| Search movies/TV shows | read |
| Play movie/episode by name | write |
Screen Capture (5 tools)
Tool | Description | Type |
| Capture full screen screenshot (returns PNG image) | read |
| Capture a specific app window | read |
| Capture a screen region by coordinates | read |
| List all visible windows with position/size | read |
| Record screen for 1-60 seconds (.mov) | write |
Maps (8 tools)
Tool | Description | Type |
| Search for a place in Apple Maps | write |
| Get directions between two locations | write |
| Drop a pin at specific coordinates | write |
| Open a specific address in Apple Maps | write |
| Search for places near a location | write |
| Generate a shareable Apple Maps link | read |
| Convert place name/address to coordinates | read |
| Convert coordinates to place name/address | read |
Podcasts (6 tools)
Tool | Description | Type |
| List subscribed podcast shows | read |
| List episodes for a show | read |
| Currently playing podcast episode | read |
| Play, pause, next, previous | write |
| Play a specific episode by name | write |
| Search episodes by keyword | read |
Weather (3 tools)
Tool | Description | Type |
| Get current weather by coordinates | read |
| Get multi-day forecast by coordinates | read |
| Get hourly forecast by coordinates | read |
Location (2 tools)
Tool | Description | Type |
| Get device's current GPS coordinates | read |
| Check Location Services authorization status | read |
Bluetooth (4 tools)
Tool | Description | Type |
| Check Bluetooth power state | read |
| Scan for nearby BLE devices | read |
| Connect to a BLE device by UUID | write |
| Disconnect a BLE device | write |
Google Workspace (16 tools)
Requires: npm install -g @googleworkspace/cli && gws auth setup
Tool | Description | Type |
| Check GWS CLI availability | read |
| List Gmail messages with query | read |
| Read Gmail message by ID | read |
| Send email via Gmail | write |
| List Google Drive files | read |
| Get Drive file metadata | read |
| Full-text search across Drive | read |
| Read Google Sheet values | read |
| Write to Google Sheet | write |
| List Google Calendar events | read |
| Create Google Calendar event | write |
| Read Google Doc content | read |
| List Google Tasks | read |
| Create Google Task | write |
| Search Google Contacts | read |
| Execute any GWS CLI command | write |
Resources
MCP resources provide live data from Apple apps via URI.
URI | Description |
| 10 most recent notes |
| Recent notes (custom count, max 50) |
| Today's calendar events |
| Next 7 days of calendar events |
| Overdue reminders |
| Today's due reminders (incomplete only) |
| Currently playing Apple Music track |
| macOS clipboard content |
| Unread mail count across all mailboxes |
| Unified context from all active apps |
| Configurable depth context (brief/standard/full) |
Prompts
Per-App
organize-notes — Classify notes by topic, create folders, move
find-duplicates — Find similar notes, compare, suggest cleanup
weekly-review — Summarize past week's notes
organize-reminders — Scan, identify overdue/completed, cleanup
daily-review — Today's due reminders with priorities
schedule-review — Upcoming events, conflicts, optimizations
meeting-prep — Event details + related notes for meeting prep
Cross-Module
daily-briefing — Today's events + due reminders + recent notes
weekly-digest — Past N days: events + notes + reminders combined
meeting-notes-to-reminders — Extract action items from meeting notes, create reminders
event-follow-up — Create follow-up note and reminders after a meeting
research-with-safari — Safari research + save results to Notes
focus-session — Calendar + Reminders + Music focus session
file-organizer — Finder file organization + Notes logging
Developer Workflows
dev-session — Scan project, check specs, research docs, create session notes
debug-loop — Capture errors from Safari/clipboard, locate code, log bugs, create fix tasks
screen-capture-flow — Screenshot → Photos import → annotation notes
app-release-prep — Calendar schedule + Notes changelog + Reminders checklist
idea-to-task — Break idea into tasks → Reminders + Calendar time blocks
build-log — Analyze build output, log errors or celebrate success
Shortcuts
shortcut-automation — Discover and chain Siri Shortcuts for automation
shortcut-discovery — Find relevant shortcuts for a task
shortcut-troubleshooting — Debug and fix broken shortcuts
Developer Agent Pipeline
AirMCP's developer prompts connect Apple apps into autonomous agent workflows. Each prompt orchestrates tools across multiple modules — AI reads the actual filesystem, Notes, Calendar, and Reminders for context, then records structured results.
┌─────────────────────────────────────────────────────────────────┐
│ dev-session │
│ Finder (scan) → Notes (specs) → Safari (docs) → Notes (log) │
└─────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ debug-loop │
│ Safari (JS errors) → Clipboard → Finder (locate) → │
│ Notes (bug log) → Reminders (fix tasks) │
└─────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ idea-to-task │
│ Notes (idea) → AI (decompose) → Reminders (tasks) → │
│ Calendar (time blocks) │
└─────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ build-log │
│ Finder (output) → Clipboard (log) → │
│ ┌ Fail → Notes (error log) → Reminders (fix tasks) │
│ └ Pass → Notification → Music (celebrate) → Notes (success) │
└─────────────────────────────────────────────────────────────────┘Designed for AI coding agents (Claude Code, Cursor, Copilot, etc.) to invoke via MCP prompts, turning your Mac into a context-aware development environment.
Module Presets
By default, new installations start with 5 core modules (Notes, Reminders, Calendar, Shortcuts, System) to keep things simple. You can enable more anytime:
# Re-run the setup wizard to change modules
npx airmcp init
# Or enable all modules at once
npx airmcp --fullOr edit ~/.config/airmcp/config.json directly:
{
"disabledModules": ["messages", "intelligence"]
}CLI Commands
Command | Description |
| Interactive setup wizard |
| Diagnose installation issues |
| Start MCP server (stdio, default) |
| Start with all 25 modules enabled |
| Start as HTTP server (port 3847) |
Configuration
Environment Variables
Variable | Default | Description |
|
| Include shared notes/folders |
|
| Allow sending iMessages (opt-in) |
|
| Allow sending emails (opt-in) |
|
| Enable all modules (ignores preset) |
| — | Disable a specific module (e.g. |
| — | Google Gemini API key for cloud embeddings (optional) |
|
| Gemini embedding model name |
|
| Embedding dimension (768/1024/2048/3072) |
| auto | Force provider: |
| — | Bearer token for HTTP mode authentication |
Config File
~/.config/airmcp/config.json:
{
"disabledModules": ["messages", "intelligence"],
"includeShared": false,
"allowSendMessages": false,
"allowSendMail": false,
"hitl": {
"level": "destructive-only",
"timeout": 30
}
}Human-in-the-Loop (HITL)
Require manual approval before destructive operations:
{
"hitl": {
"level": "destructive-only",
"timeout": 30
}
}Levels: off, destructive-only, all-writes, all
Semantic Search (Optional)
On-device cross-app semantic search powered by Apple's NLContextualEmbedding. Find related notes, events, reminders, and emails by meaning — not just keywords.
npm run swift-build # Build the Swift bridge firstThen use the tools:
semantic_index— Index data from enabled Apple apps into a local vector storesemantic_search— Search by meaning across all indexed datafind_related— Find items related to a specific note/event/remindersemantic_status— Check index status
Supports Korean, English, Japanese, Chinese with automatic language detection. Optionally set GEMINI_API_KEY for higher-quality Google Gemini embeddings.
Swift Bridge (Optional)
For semantic search, recurring events/reminders (EventKit), photo import/delete (PhotoKit), and Apple Intelligence — requires macOS 26+:
npm run swift-buildRequirements
macOS
Node.js >= 18
Per-app automation permissions (prompted on first run) — use
setup_permissionstool to request all at onceApple Intelligence: macOS 26+ with Apple Silicon
Limitations
Modules with OS requirements (e.g., Intelligence requires macOS 26+) are automatically disabled at startup on older systems via runtime OS detection.
Architecture & Security
JXA/AppleScript dependency — Core automation relies on Apple's scripting dictionaries. While these have been stable for 10+ years, macOS updates can theoretically break individual modules. Circuit breaker (3 failures → 60s auto-disable) isolates failures. UI Automation tools (6 tools) are inherently more brittle and separated into their own module.
Read data exposure — Destructive operations require HITL approval, but read operations (mail, messages, contacts) are not rate-limited. When connected to cloud LLMs, sensitive data passes through the LLM provider. Mitigations: PII scrubbing in logs, pagination limits, sensitive modules (mail, messages) require explicit opt-in.
IPC overhead — Multi-process path (Client → Node.js → osascript/Swift CLI → macOS app). Each JXA call adds ~50ms overhead. Pagination prevents bulk data transfers. Swift bridge path bypasses JXA for EventKit/PhotoKit operations.
Scope — 252 tools across 25 modules follow 5 repeating patterns (JXA CRUD, Swift bridge, HTTP API, System Events, CLI wrapper), keeping maintenance proportional to pattern count, not tool count.
Location & Bluetooth
Location requires macOS Location Services permission (first use triggers system dialog).
Bluetooth scanning discovers BLE (Low Energy) devices only. Classic Bluetooth devices are listed via
list_bluetooth_devicesin the System module.Bluetooth connect/disconnect operates within the server process lifecycle.
Notes
Move copies and deletes (new ID, reset dates, lost attachments). Update replaces entire body — read first to preserve content.
Password-protected notes cannot be read.
Reminders / Calendar
JXA recurrence is read-only — use
create_recurring_event/create_recurring_reminder(Swift/EventKit).Calendar attendees are read-only.
Contacts
Custom fields not accessible.
Content truncated to 5000 chars by default (
maxLengthparameter adjustable).
Messages
Individual message content (chat history) not accessible via JXA.
Send requires recipient to be a registered buddy in Messages.
Music
Smart playlists are read-only.
Queue manipulation not available.
Finder
Tags use Spotlight (mdfind), performance varies with index state.
Safari
Reading page content requires "Allow JavaScript from Apple Events" in Safari Developer menu.
macOS 26+: Bookmark and Reading List tools (
list_bookmarks,list_reading_list,add_bookmark) useBookmarks.plistinstead of JXA (Apple removed bookmark scripting). Requires Full Disk Access for your terminal in System Settings > Privacy & Security.add_bookmarkis not supported on macOS 26+.
Podcasts
macOS 26+: All Podcasts tools are non-functional. Apple removed the Podcasts scripting dictionary in macOS 26 (Tahoe). The circuit breaker will auto-disable the module after 3 failures.
Photos
JXA: album creation and photo addition only, no import/delete.
Swift bridge (macOS 26+): full import/delete via PhotoKit.
Pages / Numbers / Keynote
macOS 26+: Apple renamed iWork apps (e.g. "Pages" → "Pages Creator Studio"). AirMCP uses bundle IDs internally so this is handled transparently.
Requires the corresponding iWork app to be open for document operations.
Apple Intelligence
Requires macOS 26 (Tahoe) + Apple Silicon.
Build bridge binary with
npm run swift-build.
Roadmap
v2.1 (Current)
Gemini Embedding upgrade — Apple Intelligence의 Gemini 채택에 맞춰
text-embedding-004로 업그레이드. on-device Swift bridge + cloud Gemini 하이브리드 provider 지원. Apple이 Foundation Models에 Gemini를 도입하면서 AirMCP도 동일 생태계로 확장 — on-device 처리와 클라우드 임베딩을 자동 전환Google Workspace — Gmail, Drive, Sheets, Calendar, Docs, Tasks, People via
@googleworkspace/cliDynamic module loading — New modules = 1 line in MANIFEST (no import boilerplate)
Centralized constants — All API URLs, timeouts, buffer sizes in
src/shared/constants.tswith env var overrides
v2.0
CoreLocation — Native GPS coordinates via Swift/CLLocationManager
CoreBluetooth — BLE device scanning, state, connect/disconnect via Swift/CBCentralManager
App Management — Launch, quit, check app status
Window Management — List, move, resize, minimize windows across all apps
Geocoding — Forward/reverse geocoding via Open-Meteo and Nominatim APIs
Security hardening — Sensitive modules (mail, messages) opt-in by default, architecture limitations documented
Platform Constraints (macOS 26+)
Safari bookmarks/reading list — Apple removed JXA bookmark scripting classes in macOS 26. The plist fallback (
~/Library/Safari/Bookmarks.plist) requires Full Disk Access, which TCC blocks for MCP server processes. Investigating Shortcuts-based or WebExtension bridge approaches.Safari — Legacy JXA
make new bookmarkno longer supported in macOS 26. No programmatic alternative available yet.Podcasts — Apple removed the Podcasts JXA scripting dictionary entirely in macOS 26. All 6 Podcasts tools return errors. Investigating Shortcuts bridge or Media framework alternatives.
Future
OAuth 2.1 + PKCE — HTTP transport authentication for remote deployments
GUI .app distribution — Code Signing + Notarization, Homebrew Cask
Marketplace listings — mcp.so, Smithery, and other MCP directories
iOS / visionOS exploration (v3.0+)
Contributing
See CONTRIBUTING.md for development setup, code style, and PR guidelines.
First-time contributors: look for issues labeled good first issue.
Community
GitHub Discussions — Questions, ideas, show & tell
Issues — Bug reports and feature requests
Changelog — Release history
License
MIT
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.