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

@kamk95/apple-reminders-mcp

v1.0.0

Published

MCP server for Apple Reminders via AppleScript

Readme

apple-reminders-mcp

An MCP server that connects Claude Desktop to Apple Reminders on macOS via AppleScript.

Prerequisites

Installation

1. Add to Claude Desktop config

Open ~/Library/Application Support/Claude/claude_desktop_config.json and add:

{
  "mcpServers": {
    "apple-reminders": {
      "command": "npx",
      "args": ["-y", "@kamk95/apple-reminders-mcp"]
    }
  }
}

2. Restart Claude Desktop

The first time a reminder tool is used, macOS will prompt you to grant Reminders access — click Allow.


Manual install (alternative)

If you prefer to run from source:

git clone https://github.com/kamrenkennedy/apple-reminders-mcp.git
cd apple-reminders-mcp
npm install

Then use this config instead:

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

Tools

list_reminders

List reminders across all lists or a specific one.

| Parameter | Type | Description | |---|---|---| | list_name | string | Filter to a specific list (optional) | | include_completed | boolean | Include completed reminders (default: false) |

create_reminder

Create a new reminder.

| Parameter | Type | Description | |---|---|---| | name | string | Required. Title of the reminder | | list_name | string | Destination list (default: Reminders) — created if it doesn't exist | | due_date | string | Due date in YYYY-MM-DD format | | due_time | string | Due time in HH:MM 24-hour format — requires due_date | | priority | string | none / low / medium / high / urgent | | notes | string | Body/notes text | | tags | string[] | Tags to attach |

complete_reminder

Mark a reminder as completed.

| Parameter | Type | Description | |---|---|---| | name | string | Required. Exact name of the reminder | | list_name | string | Narrow search to this list (optional) |

delete_reminder

Permanently delete a reminder.

| Parameter | Type | Description | |---|---|---| | name | string | Required. Exact name of the reminder | | list_name | string | Narrow search to this list (optional) |

update_reminder

Update any fields on an existing reminder. Only provided fields are changed. If you update notes or tags individually, the other is preserved automatically.

| Parameter | Type | Description | |---|---|---| | name | string | Required. Current name of the reminder | | list_name | string | Current list to narrow the search | | new_name | string | Rename the reminder | | new_list_name | string | Move reminder to this list | | due_date | string | New due date in YYYY-MM-DD format | | due_time | string | New due time in HH:MM 24-hour format | | clear_due_date | boolean | Remove the due date entirely | | priority | string | none / low / medium / high / urgent | | notes | string | Replace notes text | | tags | string[] | Replace tags |


Notes

  • Tags are stored inside the reminder's notes field as [tags: tag1, tag2] since the native Reminders tags API is not accessible via AppleScript. They round-trip correctly through all tools.
  • Reminders are matched by exact name. If you have duplicates across lists, pass list_name to disambiguate.