mcp-apple-notes

by dan8oren

Not rated
GitHub

About

Semantic search and RAG over Apple Notes with on-device embeddings, full CRUD, folder management, and fuzzy title matching. 10 tools. Fully local on macOS.

Details

Author
dan8oren
Categories
Productivity, Other, Knowledge Base

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.

git clone https://github.com/Dan8Oren/mcp-apple-notes && cd mcp-apple-notes && bun install
{ "mcpServers": { "apple-notes": { "command": "bun", "args": ](https://github.com/Dan8Oren/mcp-apple-notes/blob/HEAD/index.ts)["run", "/path/to/mcp-apple-notes/index.ts"] } } }
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-noteswith 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? Enableread-only modeto block all write operations while you explore.
"env": { "MCP_APPLE_NOTES_READ_ONLY": "1" }

If you prefer azero-setupapproach 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.
- OpenSettings → Developer → Edit Config
- Paste your chosen JSON config intoclaude_desktop_config.json
- Restart Claude Desktop

tail -n 50 -f ~/Library/Logs/Claude/mcp-server-apple-notes.log
# 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

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

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

Every Apple Notes operation is aJXAcall you can inspect inindex.ts. No network requests, no background syncing — just local scripting bridge calls.

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.

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

CLI flag— add--verboseto your MCP client config args:

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

Environment variable— for clients that supportenv:

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

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

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 Notesidso clients can track notes safely across renames and moves.

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

- 🐛Found a bug?Open an issue
- 💡Have a feature idea?
Start a thread in Ideas
- ❓Need help with setup or integration?
Ask in Q&A
- 🛠Built something cool with it?
Share in Show and tell
- 📣Watch for updates
Announcements

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

Originally based onRafalWilinski/mcp-apple-notes.

A local server to query and interact with Markdown knowledge bases by tags, text, slug, or date.

Local-first MCP memory server with no external dependency, source citations and OKF/Markdown KB.

Self-maintaining knowledge vault: figure-level search, auto-wikilinks, and sleep-based memory compression.

Open-source shared AI memory and team knowledge layer with 44 MCP tools for notes, memories, URLs, emails, projects, graph search, semantic search, and Git sync.

Interact with Apple Notes using natural language on macOS.

MCP server for Apple Notes with semantic search and CRUD operations. Claude searches, reads, creates, updates, and manages your Apple Notes through natural language.

An MCP server for interacting with Bookstack, built with the mcp-framework for Node.js.

Integrates Model Context Protocol (MCP) with Obsidian, allowing AI assistants to interact with your notes and vault.

CLI & MCP server for Zotero 7/8 — 52 tools to let AI manage your research library locally. Search, import, export, PDF, notes, and more.

An MCP server for document ingestion, chunking, semantic search, and note management.

Features·Security·Installation·Tools·Verification·Response Shape

AModel 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.

- 🔍 Semantic search over Apple Notes usingall-MiniLM-L6-v2on-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 modefor safe exploration
- 🏃‍♂️ Fully local execution — no API keys needed

Because this server interacts with yourprivate 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 Automationscripting bridge.
- Embeddings on-device— The
all-MiniLM-L6-v2model 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 releasesinclude SHA-256 checksums so you can verify downloaded artifacts.

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.

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"] } } }
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-noteswith 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? Enableread-only modeto block all write operations while you explore.
"env": { "MCP_APPLE_NOTES_READ_ONLY": "1" }

If you prefer azero-setupapproach 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.
- OpenSettings → Developer → Edit Config
- Paste your chosen JSON config intoclaude_desktop_config.json
- Restart Claude Desktop

tail -n 50 -f ~/Library/Logs/Claude/mcp-server-apple-notes.log
# 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

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

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

Every Apple Notes operation is aJXAcall you can inspect inindex.ts. No network requests, no background syncing — just local scripting bridge calls.

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.

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

CLI flag— add--verboseto your MCP client config args:

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

Environment variable— for clients that supportenv:

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

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

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 Notesidso clients can track notes safely across renames and moves.

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

- 🐛Found a bug?Open an issue
- 💡Have a feature idea?
Start a thread in Ideas
- ❓Need help with setup or integration?
Ask in Q&A
- 🛠Built something cool with it?
Share in Show and tell
- 📣Watch for updates
Announcements

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

Originally based onRafalWilinski/mcp-apple-notes.

A local server to query and interact with Markdown knowledge bases by tags, text, slug, or date.

Local-first MCP memory server with no external dependency, source citations and OKF/Markdown KB.

Self-maintaining knowledge vault: figure-level search, auto-wikilinks, and sleep-based memory compression.

Open-source shared AI memory and team knowledge layer with 44 MCP tools for notes, memories, URLs, emails, projects, graph search, semantic search, and Git sync.

Interact with Apple Notes using natural language on macOS.

MCP server for Apple Notes with semantic search and CRUD operations. Claude searches, reads, creates, updates, and manages your Apple Notes through natural language.

An MCP server for interacting with Bookstack, built with the mcp-framework for Node.js.

Integrates Model Context Protocol (MCP) with Obsidian, allowing AI assistants to interact with your notes and vault.

CLI & MCP server for Zotero 7/8 — 52 tools to let AI manage your research library locally. Search, import, export, PDF, notes, and more.

An MCP server for document ingestion, chunking, semantic search, and note management.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.