apple-notes-mcp
MCP server for macOS that enables creating, reading, and searching Apple Notes programmatically through tools like find, get by title or ID, and create.
README
Apple Notes MCP Server
MCP (Model Context Protocol) server for Apple Notes integration on macOS. Provides programmatic access to create, read, and search Apple Notes.
Features
- Search Notes: Find notes using comma-separated search terms (OR logic)
- Get Note by Title: Retrieve note content by its title
- Get Note by ID: Retrieve note content by its unique ID
- Create Note: Create new notes with title and content
Requirements
- macOS (Apple Notes is macOS-only)
- Node.js (version 14 or higher recommended)
- Apple Notes app installed
Installation
npm install
Usage
This is an MCP server designed to be used with MCP-compatible clients. To run the server:
npm start
Or directly:
node index.js
Available Tools
find_apple_notes
Search for notes using comma-separated terms (OR search).
Parameters:
search_terms(string, required): Comma-separated search terms
Returns: JSON array of matching notes with id, title, creation_date, and modification_date
get_apple_note_by_title
Get the content of a specific note by its title.
Parameters:
title(string, required): Title of the note
Returns: Note content as text
get_apple_note_by_id
Get the content of a specific note by its ID.
Parameters:
note_id(string, required): ID of the note
Returns: Note content as text
create_apple_note
Create a new note in Apple Notes.
Parameters:
title(string, required): Title of the new notecontent(string, required): Content of the new note
Returns: Success message with the new note's ID
Configuration
To use this MCP server with Claude Desktop or other MCP clients, add it to your MCP configuration file:
{
"mcpServers": {
"apple-notes": {
"command": "node",
"args": ["/path/to/apple-notes-mcp/index.js"]
}
}
}
Limitations
- Only works on macOS with Apple Notes installed
- Requires appropriate permissions for osascript to access Notes
- Read-only operations - no editing or deletion capabilities (preserves note integrity)
License
MIT
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.
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.
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.
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.