Apple Notes MCP
Enables saving Markdown articles as rich notes in Apple Notes, with automatic conversion from Markdown to HTML, and appends metadata such as save time, tags, and source.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Apple Notes MCPSave the discussion about React state management to the 'React' category with tags state, hooks."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
中文 | English
Apple Notes MCP
A TypeScript MCP (Model Context Protocol) server that lets AI assistants (Claude, etc.) save well-organized technical articles to Apple Notes and local Markdown files simultaneously.
Features
Markdown input — AI writes Markdown, the server converts it to Apple Notes rich HTML automatically
Dual write — saves to both
~/Documents/notes/[category]/[title].mdand Apple Notes at the same timeAuto folder creation — if the target folder doesn't exist, it's created on the fly
Article metadata — automatically appends save time, tags, and source to each note
Provider pattern — clean extensible architecture; adding new targets (Yuque, Feishu, etc.) requires zero changes to existing code
Configurable via env vars — notes root dir and enabled providers are all configurable
Related MCP server: MCP Apple Notes
Tools
Tool | Description |
| Save a Markdown article to all enabled providers |
| List articles in a folder (or all folders) |
| Full-text search across all notes |
| Read a note by ID |
| List all Apple Notes folders |
Architecture
AI Client (Claude Desktop / Claude Code)
│ stdio (MCP protocol)
▼
MCP Server (index.ts)
│
▼
save-article.ts ← orchestration only, 9 lines
│
├──▶ LocalMarkdownProvider → ~/Documents/notes/[category]/[title].md
│
└──▶ AppleNotesProvider → osascript → Apple Notes AppEach provider implements the NoteProvider interface:
export interface NoteProvider {
readonly name: string;
save(article: Article): Promise<ProviderResult>;
}Adding a new provider (e.g. Yuque) only requires:
Create
src/providers/yuque.tsimplementingNoteProviderRegister it in
src/providers/index.tsAdd any required env vars (e.g.
YUQUE_TOKEN)
No existing code needs to change.
Requirements
macOS (Apple Notes via AppleScript)
Node.js v18+
iCloud account with Notes sync enabled
Installation
git clone https://github.com/fattoliu/apple-notes-mcp.git
cd apple-notes-mcp
npm install
npm run buildConfiguration
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json) or project .mcp.json:
{
"mcpServers": {
"apple-notes": {
"command": "node",
"args": ["/path/to/apple-notes-mcp/dist/index.js"],
"env": {
"NOTES_ROOT": "/Users/yourname/Documents/notes",
"ENABLE_LOCAL_MD": "true",
"ENABLE_APPLE_NOTES": "true"
}
}
}
}Environment Variables
Variable | Description | Default |
| Root directory for local Markdown files |
|
| Enable local Markdown saving |
|
| Enable Apple Notes saving |
|
Usage
After setup, just tell Claude:
Summarize our conversation about X into a technical article, save it to the "TypeScript" category with tags ts and generics.
Claude will call save_article and both targets are written automatically.
macOS Permissions
On first run, macOS will prompt you to allow access to Notes. Click Allow.
If the prompt doesn't appear, go to: System Settings → Privacy & Security → Automation and grant access manually.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fattoliu/apple-notes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server