macOS Apple Notes integration
## Apple Notes MCP Server: Native Notes Integration The **Apple Notes MCP Server** connects Apple's native Notes application to Google Antigravity, enabling developers to access, search, and manage notes directly from their AI-assisted development environment on macOS. ### Why Apple Notes MCP? - **Native Integration**: Direct access to Apple Notes without third-party sync - **iCloud Sync**: Notes sync across all Apple devices automatically - **Rich Content**: Support for checklists, tables, drawings, and attachments - **Folder Organization**: Manage notes across folders and smart folders - **Quick Notes**: Access Quick Notes for rapid capture during development ### Key Features #### 1. Note Access and Search ```javascript // Search notes by content const results = await appleNotes.search({ query: "API documentation", folder: "Development", limit: 20 }); // Get note content const note = await appleNotes.getNote({ noteId: results[0].id, format: "markdown" }); console.log(note.title); console.log(note.content); console.log(note.modifiedAt); ``` #### 2. Note Management ```javascript // Create new note const newNote = await appleNotes.createNote({ title: "Meeting Notes - Sprint Planning", content: "## Agenda\n- Review backlog\n- Sprint goals\n- Assignments", folder: "Work/Meetings" }); // Update existing note await appleNotes.updateNote({ noteId: newNote.id, content: note.content + "\n\n## Action Items\n- [ ] Update Jira tickets" }); // List notes in folder const workNotes = await appleNotes.listNotes({ folder: "Work", sortBy: "modifiedAt", order: "desc" }); ``` ### Configuration ```json { "mcpServers": { "apple-notes": { "command": "npx", "args": ["-y", "@anthropic/mcp-apple-notes"], "env": { "NOTES_DEFAULT_FOLDER": "Development" } } } } ``` ### Use Cases **Development Notes**: Keep code snippets, debugging notes, and technical documentation accessible. **Meeting Capture**: Quickly capture meeting notes and sync them with your development workflow. **Personal Knowledge Base**: Build a searchable knowledge base from your development learnings. The Apple Notes MCP Server bridges your native notes with AI-assisted development workflows.
{
"mcpServers": {
"apple-notes": {
"mcpServers": {
"apple-notes": {
"args": [
"-y",
"apple-notes-mcp"
],
"command": "npx"
}
}
}
}
}