Honeycrisp
OfficialAllows interaction with Apple Mail, providing tools for reading, searching, viewing threads, and creating drafts, with a draft-first design and gated actions for marking and moving messages.
Integrates with iCloud Drive to enable folder-as-API workflows and a cross-device approval system for governed actions.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Honeycrispwhat's in my inbox this morning?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Honeycrisp 🍎
MCP servers for your Mac's real data — Mail, Calendar, files — with safety rails you can audit. Every tool ships governed: dry-run by default, human approval required for anything that sends, moves, or deletes, an audit log of every action, and undo where the platform allows it. Local-first: no accounts, no credentials, no cloud — your data stays on your Mac.
Why this exists
Most MCP servers for personal data are thin wrappers around AppleScript:
delete_email, send_message, executed the moment a model calls them. That's
a hard thing to trust with an inbox. Honeycrisp inverts the default — a tool
call previews what it would do unless you've opted into live mode, and even
then every consequential action waits for your explicit approval through a
channel the model can't touch. The framework enforcing this is a small library
with a test suite proving each guarantee can't be bypassed, and every tool in
the suite is built on it.
Related MCP server: email-mcp
Install
From npm (recommended):
npm install -g @honeycrisp/mail @honeycrisp/context @honeycrisp/setup
honeycrisp setupOr from a clone of this repo:
npm install && npm run build
node packages/setup/dist/cli.js setupThe setup wizard walks you through everything, one yes/no question at a time
(the default answer is always No — nothing proceeds unless you say so): it
registers the servers with Claude Code / Claude Desktop, triggers the macOS
permission prompts while you're watching (instead of mid-conversation later),
explains the optional Full Disk Access tier for full-text mail search, and can
set up the iCloud Agents/ folder and capture schedules. Nothing happens
silently; every step it performs is written to the same audit DB the tools use.
What's in the box
Package | What it does |
The framework: dry-run defaults, approval gates, audit trail, provenance, undo, injection fencing. Build your own governed tools on it. | |
Apple Mail over MCP: read, search (two tiers), thread view, drafts. Draft-first by design — no send tool exists; marking and moving messages are gated with native undo. | |
Folder-as-API: drop a file into a watched iCloud folder from any device and a declared local pipeline runs; results land beside the drop. | |
A local context layer: captures mail/calendar metadata (pointers, never message bodies), serves briefings and person lookups over MCP, learns from your corrections. | |
The onboarding wizard above. | |
Gateway serving the suite over MCP streamable HTTP — loopback-only, bearer tokens (read/write scopes), audit rows that name who asked. Share the port over your own private network (e.g. Tailscale) to reach it from your other devices. | |
Apple Reminders: fenced reads and search, provenance-stamped creation, gated completion and deletion with native undo. |
How approvals work
Reads are free. Writes that leave your review loop (send, delete, move) are gated: with live mode off (the default), they preview instead of executing; with live mode on, each action individually asks a human through one of:
a native macOS dialog (default — you're at the Mac),
a file in an iCloud folder — the request appears on every device you own; move it into
ApproveorDenyin the Files app. Works from a stock iPhone, no extra apps;an MCP elicitation card in clients that support it (opt-in).
No decision, a deleted file, or any ambiguity = denied. Every outcome — executed, denied, dry-run, errored — is a row in a local SQLite audit DB, so you can always answer "what did my tools actually do?"
Privacy model
No accounts, no credentials, no cloud. Mail access goes through Mail.app, which already has your accounts. iCloud Drive is just a folder; Apple's own sync does the transport. Permissions are macOS's own TCC prompts.
Pointers, not copies. The context layer stores headers and metadata that reference messages by ID — message bodies are never stored. Delete a message in Mail and the context layer's pointer dangles and gets pruned.
Content is data, not instructions. Everything read from your mail or files is returned inside a tamper-resistant fence with a standing notice, so text inside an email can't steer the model into acting on it.
Model use is opt-in and declared. The context layer works fully deterministically with no model configured. If you configure one, its network egress is declared in config and recorded in the audit log on every run.
Design docs
The docs/ directory has one design doc per component, including the framework
contract (01), and the remote-access design (05) for reaching these servers
from phone/web clients. NOTES.md is the running engineering log: decisions
with dates, open questions, and field-test findings.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server for the entire Apple ecosystem — 150+ tools across 17 modules including Notes, Reminders, Calendar, Mail, Messages, Music, Maps, Screen Capture, and Apple Intelligence. macOS only.Last updated2853115MIT
- AlicenseAqualityBmaintenanceLocal MCP server for multi-account IMAP/SMTP email (iCloud + Gmail via app-specific passwords). Never marks mail read. Cross-folder search, idempotent sends, TLS verified.Last updated8MIT
- Alicense-qualityBmaintenanceMCP server for Apple Calendar, Mail, Reminders, and Files on macOS using native frameworks.Last updated6611MIT
- AlicenseAqualityCmaintenanceMCP server for privacy-gated local Apple data access including Mail, Messages, Notes, Calendar, Contacts, Photos, Reminders, Voice Memos, and iCloud Drive.Last updated301MIT
Related MCP Connectors
Personal MCP server for humans who create. Proof of authorship, license control.
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
Self-hosted federated MCP gateway: one OAuth 2.1 MCP server in front of N apps, user-level scopes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/honeycrisp-suite/honeycrisp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server