Governed MCP runtime for the Apple ecosystem — verified control over Notes, Mail, Calendar, Shortcuts, and more.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
claude mcp add airmcp -- npx -y airmcp{
"mcpServers": {
"airmcp": {
"command": "npx",
"args": ["-y", "airmcp"],
"env": {
"AIRMCP_HTTP_TOKEN": "<airmcp_http_token>"
}
}
}
}AIRMCP_HTTP_TOKENResumen de MCP Servers
<p align="center"> <img src="icons/airmcp-icon-256.png" alt="AirMCP" width="128"> </p> # AirMCP [](https://www.npmjs.com/package/airmcp) [](https://github.com/heznpc/AirMCP/actions/workflows/ci.yml) [](LICENSE) [](https://github.com/heznpc/AirMCP/stargazers) **Governed MCP runtime for the Apple ecosystem.** AirMCP lets Claude, Codex, Cursor, Raycast, Xcode agents, and other MCP clients work across Notes, Mail, Calendar, Reminders, Finder, Safari, Shortcuts, and the rest of your Apple workspace. The macOS runtime is available today; the iOS runtime is in preview. AirMCP is the connector and control layer, not another agent. It mediates Apple workspace actions through profiles, progressive exposure, per-call human approval, HMAC-chained audit logs, rate limits, OAuth scopes, and local controls. <p align="center"> <a href="docs/demo.gif"><img src="docs/demo.gif" alt="Real AirMCP governance flow: live trust assurance, zero-side-effect destructive preview, and verified audit chain" width="900"></a> </p> <p align="center"><strong>Preview the action. Inspect live trust. Verify the audit chain.</strong><br>The recording is generated from a real local MCP round-trip by <code>scripts/demo/governed-flow.mjs</code>.</p> > Multi-language project page: [heznpc.github.io/AirMCP](https://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 `gws` CLI 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. - **App Intent action bridge** generated from the MCP manifest for macOS Shortcuts, with an iOS-only App Shortcuts provider and destructive intents gated separately. - **Native Swift bridge** for EventKit, PhotoKit, HealthKit, Vision, on-device semantic search, and FoundationModels preview builds. AirMCP.app embeds the normal bridge; it is optional for npm and MCPB users, who can build it separately when needed. - **Dual transport**: stdio for standard MCP clients, HTTP/SSE for shared local runtimes, browser clients, registries, and always-on hosts. ## Apple Platform Direction AirMCP is one governed action layer with platform-specific roles, rather than a copy of the full Mac runtime on every device. | Platform | Status | Role | | --- | --- | --- | | macOS | Available | Full local MCP runtime and broad Apple app and system integration. | | iOS / iPadOS | Preview | Native Calendar, Reminders, Contacts, Health, and Location actions, plus in-process AppIntents. | | visionOS | Roadmap | Spatial interaction and native actions, with Mac routing for Mac-only automation. | | watchOS | Roadmap | Commands, notifications, and per-call approval through a paired iPhone runtime. | The shared Swift and AppIntents layers are the portability boundary. Platform sandboxing and lifecycle rules still determine which actions run locally and which route to a paired Mac or iPhone. ## Quick Start ### Claude Desktop one-click 1. Download `airmcp-<version>.mcpb` from [Releases](https://github.com/heznpc/AirMCP/releases). 2. Drag it onto Claude Desktop, or use **Settings -> Extensions -> Install from file...**. 3. Choose modules in the install form and finish setup. Full guide: [docs/mcpb.md](docs/mcpb.md). ### CLI wizard Install Node.js 20+, then run: ```bash npx airmcp init ``` The wizard selects a profile and stores preferences in `~/.config/airmcp/config.json`. Client registration is a separate consent step whose default is **No**; no Claude, Codex, Cursor, or Windsurf setting is read or changed until you opt in. For Codex, Claude Code, Cursor, Windsurf, and other stdio clients, use the direct runtime unless the matching GitHub Release includes a signed `AirMCP-<version>.zip`: ```bash npx airmcp init --no-clients npx airmcp connect-clients --client-runtime direct --dry-run npx airmcp connect-clients --client-runtime direct ``` The app-owned runtime is available only after installing that signed app ZIP and explicitly choosing **Start Local Runtime**. Do not configure a client to wait for AirMCP.app when the release does not include the app asset. Non-interactive examples: ```bash 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 --connect-clients npx airmcp init --profile productivity --yes --connect-clients --client-runtime direct ``` Check the install: ```bash npx airmcp doctor ``` ## Common Workflows Once connected, ask your MCP client in natural language: - "Tell me today's calendar events and overdue reminders. Do not change anything." - "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](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. The complete generated catalog currently contains 297 tools across 32 modules. Profiles and progressive exposure keep clients from loading it all at once. - **Profiles**: `starter`, `communications-safe`, `productivity`, `full`, or `custom`. - **Tool exposure**: `progressive`, `profile`, or `full`. - **Module packs**: enable only the packs you want with `npx airmcp modules` or `AIRMCP_MODULE_PACKS=core,productivity`. - **Task sessions**: `start_tool_session`, `discover_tools`, and `run_tool` allow a broad runtime to behave like a narrow task-specific toolbelt. - **Opt-in network modules**: `webhooks` and `powerautomate` stay off in every profile until explicitly enabled. Useful commands: ```bash npx airmcp modules npx airmcp modules enable productivity --install npx airmcp --full npx airmcp workflows npx airmcp workflows --readiness npx airmcp workflows today-overview --prompt ``` `today-overview` is the starter-safe first workflow: it reads only Calendar and Reminders and never writes data. Paste the printed prompt into a connected MCP client for a governed first run with client authorization and AirMCP audit coverage. `workflows <id> --preview` is a separate local diagnostic. It reads Apple apps directly, bypasses the MCP governance path, and creates no AirMCP audit entry; do not use it as the first-success workflow. Broader diagnostics such as `daily-briefing --preview` report missing modules before reading live data. The complete generated tool manifest is in [docs/tool-manifest.json](docs/tool-manifest.json). Current generated surfaces: 233 App Intent action types, 85 Interactive Snippet views, 14 AppEnum pickers, and an iOS-only provider with 8 read-only App Shortcuts that match the preview runtime. 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. The claim is verifiable, not marketing: read the first-party `airmcp://trust` resource for a live `governed` verdict composed from the tamper-evident audit chain, the active HITL level, the rate-limit / emergency-stop state, and the audit key grade — available before any tool access is widened. Preview any destructive call with `preview_action` to see exactly what it would record and whether it would be gated, without running it. - **Per-call human approval** for destructive and sensitive actions at the default `sensitive-only` HITL level. - **HMAC-chained audit log** at `~/.airmcp/audit.jsonl`, with tamper detection covered by tests. - **Native Trust Center** for governed-run timelines, approval state, audit integrity, emergency controls, permission probes, and redacted local export. Audit history is never read in the background: **Load** or **Refresh** makes one explicit `audit_log` request, and the effective HITL policy may require approval for that call. - **Rate limits**: 60/min globally and 10 destructive/hr. - **Emergency stop**: `touch ~/.config/airmcp/emergency-stop` blocks 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](docs/environment.md). HTTP policy details are in [RFC 0002](docs/rfc/0002-http-allow-network.md), and OAuth details are in [RFC 0005](docs/rfc/0005-oauth-resource-indicators.md). ## Client Setup When the matching GitHub Release includes a signed AirMCP.app ZIP, the app-owned desktop pattern keeps one local runtime behind every connected client. A per-install token is created only by an explicit action: **Start Local Runtime** in AirMCP.app, or an opted-in app-runtime client connection such as `--connect-clients` / `connect-clients`. It is stored at: ```text ~/Library/Application Support/AirMCP/http-token `
Lo que la gente pregunta sobre AirMCP
¿Qué es heznpc/AirMCP?
+
heznpc/AirMCP es mcp servers para el ecosistema de Claude AI. Governed MCP runtime for the Apple ecosystem — verified control over Notes, Mail, Calendar, Shortcuts, and more. Tiene 15 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala AirMCP?
+
Puedes instalar AirMCP clonando el repositorio (https://github.com/heznpc/AirMCP) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar heznpc/AirMCP?
+
Nuestro agente de seguridad ha analizado heznpc/AirMCP y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene heznpc/AirMCP?
+
heznpc/AirMCP es mantenido por heznpc. La última actividad registrada en GitHub es de today, con 5 issues abiertos.
¿Hay alternativas a AirMCP?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega AirMCP en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/heznpc-airmcp)<a href="https://claudewave.com/repo/heznpc-airmcp"><img src="https://claudewave.com/api/badge/heznpc-airmcp" alt="Featured on ClaudeWave: heznpc/AirMCP" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!