Apple Notes MCP Server
Enables AI assistants to read, create, search, update, and delete Apple Notes through natural language conversation, using JXA to communicate directly with the Notes app.
README
Apple Notes MCP Server
An MCP (Model Context Protocol) server that lets AI assistants like Claude read, create, search, update, and delete your Apple Notes all through natural conversation.
Built with JXA (JavaScript for Automation) to communicate with the Notes app directly.
Requirements
- macOS (Apple Notes is macOS-only)
- Node.js 18+
- An MCP-compatible client (e.g., Claude Code, Claude Desktop)
Setup
1. Clone and build
git clone https://github.com/RodriguesJohn/applenotesmcp.git
cd applenotesmcp
npm install
npm run build
2. Configure your MCP client
Claude Code
Add to your ~/.mcp.json:
{
"mcpServers": {
"apple-notes": {
"command": "node",
"args": ["/path/to/applenotesmcp/dist/index.js"]
}
}
}
Then restart Claude Code.
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"apple-notes": {
"command": "node",
"args": ["/path/to/applenotesmcp/dist/index.js"]
}
}
}
Then restart Claude Desktop.
Note: Replace
/path/to/applenotesmcpwith the actual path where you cloned the repo.
3. Grant permissions
The first time a tool runs, macOS will prompt you to allow your terminal (or Claude Desktop) to control the Notes app. Click OK to grant access.
Available Tools
| Tool | Description |
|---|---|
list_folders |
List all folders across all accounts |
list_notes |
List notes, optionally filtered by folder (default limit: 50) |
get_note |
Get full content of a note by title |
get_note_by_id |
Get full content of a note by its unique ID |
search_notes |
Search notes by keyword in title or body (max 25 results) |
create_note |
Create a new note with a title and body (HTML supported) |
update_note |
Update the body content of an existing note |
delete_note |
Delete a note by title (moves to Recently Deleted) |
Usage Examples
Once connected, just ask Claude naturally:
-
"List all my notes folders"
-
"Show me my recent notes"
-
"Find notes about project ideas"
-
"Create a note called 'Meeting Notes' with today's action items"
-
"Update my grocery list note"
License
ISC
Learn building with AI from here - https://www.theaidesignacademy.com/
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.