trackmcp
Back to directory
Tom-Semple

mcp-apple-notes-fixed

View on GitHub

MCP Apple Notes

10 stars TypeScriptOthers Updated Jun 6, 2026

Documentation

MCP Apple Notes

MCP Apple Notes

A Model Context Protocol (MCP) server that enables semantic search and RAG (Retrieval Augmented Generation) over your Apple Notes. This allows AI assistants like Claude to search and reference your Apple Notes during conversations.

MCP Apple Notes

Features

  • ๐Ÿ” Semantic search over Apple Notes using `all-MiniLM-L6-v2` on-device embeddings model
  • ๐Ÿ“ Full-text search capabilities
  • ๐Ÿ“Š Vector storage using LanceDB
  • ๐Ÿค– MCP-compatible server for AI assistant integration
  • ๐ŸŽ Native Apple Notes integration via JXA
  • ๐Ÿƒโ€โ™‚๏ธ Fully local execution - no API keys needed

Prerequisites

Installation

1. Clone the repository:

bash
git clone https://github.com/RafalWilinski/mcp-apple-notes
cd mcp-apple-notes

2. Install dependencies:

bash
bun install

Usage

1. Open Claude desktop app and go to Settings -> Developer -> Edit Config

Claude Desktop Settings

2. Open the `claude_desktop_config.json` and add the following entry:

json
{
  "mcpServers": {
    "local-machine": {
      "command": "/Users//.bun/bin/bun",
      "args": ["/Users//apple-notes-mcp/index.ts"]
    }
  }
}

Important: Replace `` with your actual username.

3. Restart Claude desktop app. You should see this:

Claude MCP Connection Status

4. Start by indexing your notes. Ask Claude to index your notes by saying something like: "Index my notes" or "Index my Apple Notes".

Troubleshooting

To see logs:

bash
tail -n 50 -f ~/Library/Logs/Claude/mcp-server-local-machine.log
# or
tail -n 50 -f ~/Library/Logs/Claude/mcp.log

Todos

  • [ ] Apple notes are returned in the HTML format. We should turn them to Markdown and embed that
  • [ ] Chunk source content using recursive text splitter or markdown text splitter
  • [ ] Add an option to use custom embeddings model
  • [ ] More control over DB - purge, custom queries, etc.
  • [x] Storing notes in Notes via Claude

Frequently asked questions

What is mcp-apple-notes-fixed?

mcp-apple-notes-fixed is MCP Apple Notes

How do I install mcp-apple-notes-fixed?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is mcp-apple-notes-fixed open source?

Yes โ€” it is hosted on GitHub at https://github.com/Tom-Semple/mcp-apple-notes-fixed and has 10 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP