npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, πŸ‘‹, I’m Ryan HefnerΒ  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you πŸ™

Β© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/siddhant-k-code-mcp-apple-notes

v1.0.1

Published

**Apple Notes MCP Server** is a Model Context Protocol server that enables seamless interaction with Apple Notes through natural language. Create, search, and retrieve notes effortlessly using Claude or other AI assistants! πŸŽ‰

Readme

πŸ“ Apple Notes MCP Server

Apple Notes MCP Server is a Model Context Protocol server that enables seamless interaction with Apple Notes through natural language. Create, search, and retrieve notes effortlessly using Claude or other AI assistants! πŸŽ‰

🎯 Features

  • Create Notes: Quickly create new notes with titles, content, and tags πŸ“
  • Search Notes: Find notes using powerful search capabilities πŸ”
  • Retrieve Content: Get the full content of any note by its title πŸ“–
  • iCloud Integration: Works directly with your iCloud Notes account ☁️

πŸš€ Getting Started

Prerequisites

  1. macOS with Apple Notes app configured
  2. Node.js (version 20.0.0 or higher)
  3. Yarn package manager

Installation

  1. Clone the repository:

    git clone https://github.com/Siddhant-K-code/mcp-apple-notes.git
    cd mcp-apple-notes
  2. Install dependencies:

    yarn install
  3. Build the project:

    yarn build
  4. Start the server:

    yarn start
  5. Configure Claude Desktop. Update your claude_desktop_config.json with:

    {
      "mcpServers": {
        "apple-notes": {
          "command": "yarn",
          "args": ["start"],
          "cwd": "/path/to/mcp-apple-notes"
        }
      }
    }

    Note: Replace /path/to/mcp-apple-notes with the actual path to your cloned repository. You may need to authorize the script to access Apple Notes when first running commands.

MCP Server Initialization

When the server starts successfully, you'll see:

Starting Apple Notes MCP server.

The server is now ready to handle your note operations! πŸŽ‰

πŸ› οΈ Usage

Available Tools

  1. Create Note

    • Description: Creates a new note in Apple Notes
    • Parameters:
      {
        title: string;      // The title of the note
        content: string;    // The content of the note
        tags?: string[];    // Optional tags for the note
      }
    • Example Response:
      Note created: My New Note
  2. Search Notes

    • Description: Search for notes by title
    • Parameters:
      {
        query: string; // The search query
      }
    • Example Response:
      Meeting Notes
      Shopping List
      Ideas for Project
  3. Get Note Content

    • Description: Retrieve the full content of a specific note
    • Parameters:
      {
        title: string; // The exact title of the note
      }
    • Example Response:
      [Full content of the note]

πŸ“š Example Use Cases

1. Quick Note Taking

Create notes during meetings or brainstorming sessions:

{
"title": "Team Meeting Notes",
"content": "Discussion points:\n1. Project timeline\n2. Resource allocation",
"tags": ["meetings", "work"]
}

2. Information Retrieval

Search for specific notes when you need them:

{
"query": "meeting"
}

3. Content Review

Get the full content of a specific note:

{
"title": "Team Meeting Notes"
}

⚑ Tips for Best Results

  • Ensure your Apple Notes app is properly configured with iCloud
  • Use descriptive titles for better searchability
  • Include relevant tags when creating notes for better organization

πŸ”§ Development

The project uses TypeScript and follows modern ES modules patterns. Key files:

  • src/index.ts: Main server implementation
  • src/services/appleNotesManager.ts: Core note management functionality
  • src/utils/applescript.ts: AppleScript integration utilities

Development Container

A development container configuration is provided for VS Code users, offering:

  • TypeScript Node.js environment
  • Prettier for code formatting
  • Automatic dependency installation

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.


Made with ❀️ for Apple Notes users