Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Dan8Oren/mcp-apple-notes MCP server](https://glama.ai/mcp/servers/Dan8Oren/mcp-apple-notes/badges/score.svg)](https://glama.ai/mcp/servers/Dan8Oren/mcp-apple-notes) πŸ“‡ 🏠 🍎 - Semantic search and RAG over Apple Notes with on-device embeddings, full CRUD,...

README.md

<div align="center"> <h3> <a href="#features">Features</a> Β· <a href="#security--transparency">Security</a> Β· <a href="#installation--setup">Installation</a> Β· <a href="#available-tools">Tools</a> Β· <a href="#verify-before-you-trust">Verification</a> Β· <a href="#response-shape">Response Shape</a> </h3> </div>

MCP Apple Notes

!MCP Apple Notes

![mcp-apple-notes MCP server](https://glama.ai/mcp/servers/Dan8Oren/mcp-apple-notes)

A Model Context Protocol (MCP) server that enables semantic search and RAG (Retrieval Augmented Generation) over your Apple Notes. Works with any MCP-compatible client β€” Claude Desktop, Cursor, Windsurf, Cline, and others.

!MCP Apple Notes Demo

Features

  • πŸ” Semantic search over Apple Notes using all-MiniLM-L6-v2 on-device embeddings model
  • πŸ“ Full-text search capabilities
  • πŸ“‚ Folder support β€” list folders, browse by folder, filter search by folder
  • πŸ“Š Vector storage using LanceDB
  • πŸ€– Works with any MCP-compatible client (Claude, Cursor, Windsurf, Cline, etc.)
  • 🍎 Native Apple Notes integration via JXA
  • πŸ”’ Optional read-only mode for safe exploration
  • πŸƒβ€β™‚οΈ Fully local execution β€” no API keys needed

Security & Transparency

Because this server interacts with your private Apple Notes, it is designed with absolute transparency in mind. It runs 100% locally on your Mac.

  • No Cloud, No Telemetry β€” No API keys, no data leaving your machine.
  • Native Apple JXA β€” Uses Apple's official JavaScript for Automation scripting bridge.
  • Embeddings on-device β€” The all-MiniLM-L6-v2 model runs locally via @huggingface/transformers.
  • Verifiable β€” You are highly encouraged to read every line of code (especially index.ts) before it ever touches your notes.
  • GitHub releases include SHA-256 checksums so you can verify downloaded artifacts.

Installation & Setup

Choose the installation method that fits your workflow.

---

Method 1: Install from source (recommended)

By cloning the repository locally, you can inspect the source code and know exactly what is executing on your machine.

Prerequisites: Node.js (v18+) or Bun

<details> <summary><strong>Using Bun?</strong></summary>

git clone https://github.com/Dan8Oren/mcp-apple-notes && cd mcp-apple-notes && bun install
{
  "mcpServers": {
    "apple-notes": {
      "command": "bun",
      "args": ["run", "/path/to/mcp-apple-notes/index.ts"]
    }
  }
}

</details>

Using NPM:

git clone https://github.com/Dan8Oren/mcp-apple-notes && cd mcp-apple-notes && npm install

Then add the server to your MCP client config. Replace /path/to/mcp-apple-notes with where you cloned the repo:

{
  "mcpServers": {
    "apple-notes": {
      "command": "npx",
      "args": ["tsx", "/path/to/mcp-apple-notes/index.ts"]
    }
  }
}

Tip: Want to try it without risk? Enable read-only mode to block all write operations while you explore. \ "env": { "MCP_APPLE_NOTES_READ_ONLY": "1" }

---

Method 2: Quick start via npx

If you prefer a zero-setup approach and trust the published npm package, you can simply add this directly to your MCP config:

{
  "mcpServers": {
    "apple-notes": {
      "command": "npx",
      "args": ["-y", "@dan8oren/mcp-apple-notes"]
    }
  }
}

---

After setup, restart your client and ask your AI assistant to "index my notes" to get started.

Per-client instructions

<details> <summary><strong>Claude Desktop</strong></summary>

  1. Open Settings β†’ Developer β†’ Edit Config
  2. Paste your chosen JSON config into claude_desktop_config.json
  3. Restart Claude Desktop

Logs:

tail -n 50 -f ~/Library/Logs/Claude/mcp-server-apple-notes.log

</details>

<details> <summary><strong>Claude Code</strong></summary>

# npm version:
claude mcp add apple-notes npx -- -y @dan8oren/mcp-apple-notes
# or from source:
claude mcp add apple-notes npx -- tsx /path/to/mcp-apple-notes/index.ts

</details>

<details> <summary><strong>Cursor</strong></summary>

Add the JSON config to ~/.cursor/mcp.json (global) or .cursor/mcp.json in your project root.

</details>

<details> <summary><strong>Windsurf</strong></summary>

Add the JSON config to ~/.windsurf/mcp.json.

</details>

Available Tools

| Tool | Description | | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | index-notes | Index all notes for semantic search. Run this first | | list-folders | List all Apple Notes folders with full paths and note counts | | list-notes | List notes with metadata. Optional path filter, includeContent flag, and contentPreviewChars (HTML-stripped per-note preview truncated to N chars β€” one fast call, avoids the response token cap when listing many notes' content) | | search-notes | Semantic + full-text search with optional path filter and limit | | get-note | Get full content by noteId or title. Returns candidates on ambiguity | | create-note | Create a new note with markdown content, optionally in a folder | | edit-note | Edit title and/or content (markdown) of an existing note | | append-to-note | Append markdown content to an existing note | | move-note | Move a note to a different folder | | delete-note | Delete a note (moves to Recently Deleted) |

Verify Before You Trust

Every Apple Notes operation is a JXA call you can inspect in index.ts. No network requests, no background syncing β€” just local scripting bridge calls.

Read-only mode

Want a safety net? Enable read-only mode to block all write operations β€” only search, list, and read tools will be available:

{
  "mcpServers": {
    "apple-notes": {
      "command": "npx",
      "args": ["-y", "@dan8oren/mcp-apple-notes"],
      "env": { "MCP_APPLE_NOTES_READ_ONLY": "1" }
    }
  }
}

When enabled, only these tools are available: index-notes, list-folders, list-notes, search-notes, get-note.

Verbose mode

Enable verbose logging to see every JXA call before it executes (logged to stderr):

CLI flag β€” add --verbose to your MCP client config args:

{
  "mcpServers": {
    "apple-notes": {
      "command": "npx",
      "args": ["--verbose", "-y", "@dan8oren/mcp-apple-notes"]
    }
  }
}

Environment variable β€” for clients that support env:

{
  "mcpServers": {
    "apple-notes": {
      "command": "npx",
      "args": ["-y", "@dan8oren/mcp-apple-notes"],
      "env": { "MCP_APPLE_NOTES_VERBOSE": "1" }
    }
  }
}

JXA operations reference

| Operation | Type | What it does | | -------------------- | ----------- | -------------------------------------------- | | getNotes | Read | Lists all notes (id, title, folder path) | | getFolders | Read | Lists all folders with paths and note counts | | getNotesByPath | Read | Gets notes in a specific folder | | getNoteDetailsById | Read | Gets full content of one note by ID | | createNote | Write | Creates a new note with title and content | | appendToNote | Write | Appends HTML content to an existing note | | editNote | Write | Updates title and/or content of a note | | moveNote | Write | Moves a note to a different folder | | deleteNote | Destructive | Moves a note to Recently Deleted |

All operations go through Apple's JXA scripting bridge (Application('Notes')). No direct file system access, no network calls. The delete operation is non-permanent β€” notes go to Recently Deleted and can be recovered within 30 days.

Response Shape

Tool responses are JSON objects in a consistent envelope:

  • Success: { "ok": true, "data": ... }
  • Error: { "ok": false, "error": { "type": "...", "message": "..." } }

Most note-oriented responses now include the stable Apple Notes id so clients can track notes safely across renames and moves.

Community & Support

Bug reports, ideas, questions, and showcases all have a home β€” please use the channel that fits:

PRs are welcome. For non-trivial changes, please open an issue or discussion first so we can align on direction before you invest time.

Acknowledgments

Originally based on RafalWilinski/mcp-apple-notes.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.