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

@mcpcn/mac-reminders-mcp

v1.0.1

Published

Mac Reminders MCP - Model Context Protocol for Apple Reminders integration

Readme

Mac Reminders MCP

Mac Reminders MCP是一个专门用于苹果提醒事项应用集成的Model Context Protocol服务器。

功能

  • 列出所有提醒事项和列表
  • 搜索提醒事项
  • 创建新的提醒事项
  • 打开特定提醒事项
  • 根据列表ID获取提醒事项

使用

该MCP服务器提供reminders工具,支持以下操作:

  • list: 列出所有提醒事项列表和提醒事项
  • search: 搜索包含指定文本的提醒事项
  • open: 打开并显示特定提醒事项
  • create: 创建新的提醒事项
  • listById: 根据列表ID获取提醒事项

此外还内置了一组“测试工具”,用于快速验证 MCP 管道是否工作:

  • test_echo: 回显输入文本
  • test_sum: 对数字数组求和
  • test_error: 故意返回错误
  • test_delay: 延迟后返回结果
  • test_random: 返回[min,max]间随机整数

调用示例(伪)

以下为调用这些测试工具的示例请求体(实际由 MCP 客户端发起):

// echo
{
  "method": "tools/call",
  "params": { "name": "test_echo", "arguments": { "message": "hello mcp" } }
}

// sum
{
  "method": "tools/call",
  "params": { "name": "test_sum", "arguments": { "numbers": [1,2,3.5] } }
}

// error
{
  "method": "tools/call",
  "params": { "name": "test_error", "arguments": { "reason": "just testing" } }
}

// delay
{
  "method": "tools/call",
  "params": { "name": "test_delay", "arguments": { "ms": 500 } }
}

// random
{
  "method": "tools/call",
  "params": { "name": "test_random", "arguments": { "min": 10, "max": 20 } }
}

许可证

MIT