AirMCP
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
Apple-native action runtime for MCP clients. AirMCP lets Claude, Codex, Cursor, Raycast, Siri, Shortcuts, Xcode agents, and other MCP-capable AI clients read, organize, and act across your Mac apps through one governed local runtime.
The catalog is broad: 296 tools across 32 modules. The important part is the layer underneath: profile-based exposure, task-scoped tool sessions, per-call human approval, HMAC-chained audit logs, rate limits, OAuth scopes, and local controls for sensitive Apple workspace actions.
Multi-language project page: heznpc.github.io/AirMCP
What You Get
Apple workspace tools for Notes, Reminders, Calendar, Contacts, Mail, Messages, Music, Finder, Safari, Photos, Shortcuts, system control, screen capture, Weather, Maps, Location, Bluetooth, and more.
Google Workspace tools for Gmail, Drive, Sheets, Calendar, Docs, Tasks, People, and raw
gwsCLI access.Profiles and progressive exposure so clients start with a small front door instead of every loaded tool.
Skills DSL workflows with
parallel,loop,retry,on_error, runtime inputs, and event triggers.Siri and Shortcuts bridge generated from the MCP manifest through AppIntents, with destructive intents gated separately.
Native Swift bridge, optional for EventKit, PhotoKit, HealthKit, Vision, on-device semantic search, and FoundationModels preview builds.
Dual transport: stdio for standard MCP clients, HTTP/SSE for shared local runtimes, browser clients, registries, and always-on hosts.
Related MCP server: apple-mcp
Quick Start
Claude Desktop one-click
Download
airmcp-<version>.mcpbfrom Releases.Drag it onto Claude Desktop, or use Settings -> Extensions -> Install from file....
Choose modules in the install form and finish setup.
Full guide: docs/mcpb.md.
CLI wizard
Install Node.js 20+, then run:
npx airmcp initThe wizard selects a profile, writes MCP client config, and stores preferences
in ~/.config/airmcp/config.json.
Non-interactive examples:
npx airmcp init --profile starter --yes
npx airmcp init --profile communications-safe --yes
npx airmcp init --profile productivity --yes
npx airmcp init --profile productivity --yes --client-runtime directCheck the install:
npx airmcp doctorCommon Workflows
Once connected, ask your MCP client in natural language:
"Brief me on today's calendar, overdue reminders, unread mail, and recent notes."
"Turn today's meetings into a prep checklist."
"Draft replies for urgent mail, but ask before sending anything."
"For my next meeting, find related notes, contacts, files, and reminders."
"Search my Safari tabs for that article and save the summary to Notes."
"Run my Morning Routine shortcut."
"Take a screenshot and save it to my Desktop."
More workflow examples live in docs/workflows.md.
Runtime Model
AirMCP is designed to keep a large local capability surface usable without dumping the full catalog into every client context.
Profiles:
starter,communications-safe,productivity,full, orcustom.Tool exposure:
progressive,profile, orfull.Module packs: enable only the packs you want with
npx airmcp modulesorAIRMCP_MODULE_PACKS=core,productivity.Task sessions:
start_tool_session,discover_tools, andrun_toolallow a broad runtime to behave like a narrow task-specific toolbelt.Opt-in network modules:
webhooksandpowerautomatestay off in every profile until explicitly enabled.
Useful commands:
npx airmcp modules
npx airmcp modules enable productivity --install
npx airmcp --full
npx airmcp workflows
npx airmcp workflows --readiness
npx airmcp workflows daily-briefing --promptThe complete generated tool manifest is in docs/tool-manifest.json.
Current generated surfaces: 233 Shortcuts / Siri AppIntents, 84 Interactive Snippet views, and 13 AppEnum pickers. The sessionless discovery card uses MCP schema version 2025-11-25.
Safety Model
AirMCP treats local app access as a governed action layer, not a blind shell for agents.
Per-call human approval for destructive and sensitive actions at the default
sensitive-onlyHITL level.HMAC-chained audit log at
~/.airmcp/audit.jsonl, with tamper detection covered by tests.Rate limits: 60/min globally and 10 destructive/hr.
Emergency stop:
touch ~/.config/airmcp/emergency-stopblocks destructive tools without restarting the server.Inbound HTTP policy through
AIRMCP_ALLOW_NETWORK: loopback-only by default, with token, origin, or OAuth modes available for wider exposure.OAuth 2.1 + Resource Indicators for HTTP runtimes that need scoped access control, with RS256/ES256 JWT verification.
Environment variables are indexed in docs/environment.md. HTTP policy details are in RFC 0002, and OAuth details are in RFC 0005.
Client Setup
The recommended desktop pattern is one local AirMCP runtime, with clients connecting to it. The app or setup wizard generates a per-install token at:
~/Library/Application Support/AirMCP/http-tokenStdio clients can proxy into the app-owned HTTP runtime:
npx -y airmcp connect --url http://127.0.0.1:3847/mcpSet AIRMCP_HTTP_TOKEN to the token value when using that proxy.
Examples:
claude mcp add --env AIRMCP_HTTP_TOKEN=<token> airmcp -- npx -y airmcp connect --url http://127.0.0.1:3847/mcp
codex mcp add --env AIRMCP_HTTP_TOKEN=<token> airmcp -- npx -y airmcp connect --url http://127.0.0.1:3847/mcpDirect stdio mode still works for development or isolated client-owned runtimes:
npx -y airmcpBrowser-based MCP clients should use HTTP mode with token and origin checks. See docs/oauth-browser-pkce.md for the browser/OAuth path.
Siri and Shortcuts
AirMCP can generate AppIntents and AppShortcuts from the same MCP tool manifest. That gives Siri, Shortcuts, Spotlight, widgets, and the Action Button typed access to the same governed runtime.
Destructive intents are opt-in with AIRMCP_APPINTENTS_DESTRUCTIVE=true.
AskAirMCPIntent and FoundationModels-backed Apple Intelligence paths are
preview-only and require explicit Swift builds.
Guide: docs/shortcuts.md. Architecture: RFC 0007.
Local Development
git clone https://github.com/heznpc/AirMCP.git
cd AirMCP
npm install
npm run build
node dist/index.jsUseful checks:
npm test
npm run mcp:validate
npm run dev:test -- notes
npm run dev:test:changedSwift bridge:
npm run swift-buildFoundationModels preview builds require macOS 26+, Apple Silicon, a compatible SDK, and the explicit compile flag:
cd swift
swift build -c release -Xswiftc -DAIRMCP_ENABLE_FOUNDATION_MODELSLocal build artifacts can grow after Swift or app builds. To inspect or reclaim ignored artifacts:
npm run clean:local
npm run clean:local:apply
npm run size:checkTesting guide: docs/testing.md.
Requirements
macOS for the server runtime.
Node.js 20 or newer.
macOS Automation, Accessibility, Full Disk Access, Location, Bluetooth, or Photos permissions as required by the modules you enable.
Optional Swift bridge built from source for Swift-backed tools. It is not bundled into the npm package,
.mcpb, or menubar app distribution.FoundationModels-backed Apple Intelligence preview requires macOS 26+, Apple Silicon, and
AIRMCP_ENABLE_FOUNDATION_MODELS.
The iOS server is preview, not the shipping surface. macOS is the supported runtime.
Documentation
Tool manifest: generated list of registered tools.
Workflows: target workflows and prompt catalog.
Skills DSL: YAML workflow syntax and built-ins.
Shortcuts: Siri, Shortcuts, Spotlight, and AppIntents.
Environment variables: all runtime knobs.
MCPB install: Claude Desktop extension package.
OAuth browser PKCE: browser client setup.
RFC index: design records and architecture notes.
Testing: development test workflow.
Project direction: product direction and positioning.
Contributing
See CONTRIBUTING.md for development setup, code style, and PR guidelines.
First-time contributors can look for
good first issue.
Community
License
MIT
Maintenance
Latest Blog Posts
- 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/heznpc/AirMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server