Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Apple Notes MCP Server
file-text

Apple Notes MCP Server MCP Server

macOS Apple Notes integration

applenotesmacosproductivity

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "apple-notes": {
      "mcpServers": {
        "apple-notes": {
          "args": [
            "-y",
            "apple-notes-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1macOS only
  2. 2Read and create notes
  3. 3Search functionality

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers