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

apple-productivity-mcp

v0.1.0

Published

A private, local MCP server that lets AI assistants work with Apple Reminders, Calendar, Notes, and Contacts.

Readme

apple-productivity-mcp

CI License: MIT

A private, local MCP server that lets AI assistants work with Apple Reminders Apple Calendar, Apple Notes, and Apple Contacts.

This server runs on your Mac and talks to the local Reminders, Calendar, and Notes apps through JXA (JavaScript for Automation). Contacts support is read-only. Your reminders, calendar events, notes, and contacts are not uploaded to a third-party API by this package.

Tools

  • list_reminder_lists - list all Reminders lists
  • list_reminders - list reminders, optionally by list and completion state
  • search_reminders - search reminder titles and notes
  • create_reminder - create a reminder
  • complete_reminder - mark a reminder complete by id or unique exact title
  • update_reminder - update a reminder by id
  • get_today_reminders - list incomplete reminders due today
  • get_overdue_reminders - list incomplete overdue reminders
  • list_calendars - list all Calendar calendars
  • list_calendar_events - list events in a date range
  • search_calendar_events - search events by title, notes, or location
  • create_calendar_event - create a calendar event
  • update_calendar_event - update a calendar event by id
  • get_today_calendar_events - list events happening today
  • get_upcoming_calendar_events - list events in the next 7 days
  • list_notes_folders - list all Notes folders
  • list_notes - list notes, optionally by folder
  • search_notes - search note titles and bodies
  • create_note - create a note
  • append_to_note - append text to a note
  • update_note - update a note by id
  • search_contacts - search Contacts by name, organization, email, or phone
  • get_contact - get a contact by id

Requirements

  • macOS with Apple Reminders, Apple Calendar, Apple Notes, and Apple Contacts
  • Node.js 20 or newer
  • An MCP client such as Claude Desktop, Cursor, or Codex

On first use, macOS may ask for permission to let your terminal or MCP client control Reminders, Calendar, Notes, or Contacts. Allow it for the server to work.

Install From Source

npm ci
npm run build

For local development:

npm run dev

See Installation for Claude Desktop, Cursor, local checkout, read-only mode, and macOS permission setup.

Claude Desktop

Add this to your Claude Desktop MCP config:

{
  "mcpServers": {
    "apple-productivity": {
      "command": "node",
      "args": [
        "/absolute/path/to/apple-productivity-mcp/dist/index.js"
      ]
    }
  }
}

After the package is published to npm, the config can use npx:

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

Example prompts

  • "What reminders are due today?"
  • "Add a reminder to cancel my trial next Friday."
  • "Show overdue reminders from Work."
  • "Search my reminders for passport."
  • "Mark the reminder with this id complete."
  • "What is on my calendar today?"
  • "Schedule a focus block tomorrow from 9 to 10."
  • "Find calendar events mentioning project kickoff."
  • "Find my notes about the launch plan."
  • "Create a note with these meeting takeaways."
  • "Append this checklist to my project note."
  • "Find Ada's email in my contacts."
  • "Run in read-only mode while I try this server."

Development

npm install
npm test
npm run typecheck
npm run build

Apple app access is isolated behind small client classes, so unit tests can run without opening or modifying your Reminders, Calendar, Notes, or Contacts data.

Project

Notes

  • complete_reminder works best with an id returned by list_reminders or search_reminders.
  • When completing by title, the title must match exactly and only one reminder may match.
  • Dates should be provided as ISO 8601 strings, for example 2026-06-01T09:00:00+02:00.
  • Set APPLE_PRODUCTIVITY_READ_ONLY=1 to block write tools while keeping read/search tools available.

Troubleshooting

If a tool fails with an Apple app automation error:

  • Open the relevant Apple app once before using the server.
  • In System Settings, check Privacy & Security automation permissions for your terminal or MCP client.
  • If macOS prompts for access to Reminders, Calendar, or Notes, allow it and retry the tool call.