Back to Browse

Honeycrisp MCP Server

Developer ToolsLow Risk9.7MCP RegistryLocal
Free

Server data from the Official MCP Registry

Local-first personal context over MCP: mail/calendar metadata, briefings, person lookups. No cloud.

About

Local-first personal context over MCP: mail/calendar metadata, briefings, person lookups. No cloud.

Security Report

9.7
Low Risk9.7Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. โš ๏ธ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

13 files analyzed ยท 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

database

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-honeycrisp-suite-context": {
      "args": [
        "-y",
        "@honeycrisp/context",
        "serve"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

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.

Install

From npm (recommended):

npm install -g @honeycrisp/mail @honeycrisp/context @honeycrisp/setup
honeycrisp setup

Or from a clone of this repo:

npm install && npm run build
node packages/setup/dist/cli.js setup

The 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

PackageWhat it does
@honeycrisp/governedThe framework: dry-run defaults, approval gates, audit trail, provenance, undo, injection fencing. Build your own governed tools on it.
@honeycrisp/mailApple 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.
@honeycrisp/foldersFolder-as-API: drop a file into a watched iCloud folder from any device and a declared local pipeline runs; results land beside the drop.
@honeycrisp/contextA local context layer: captures mail/calendar metadata (pointers, never message bodies), serves briefings and person lookups over MCP, learns from your corrections.
@honeycrisp/setupThe onboarding wizard above.
@honeycrisp/remoteGateway 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.

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 Approve or Deny in 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.

Reviews

No reviews yet

Be the first to review this server!