apple-reminders-mcp

apple-reminders-mcp

Enables Claude to manage Apple Reminders on macOS, including creating, reading, updating, deleting, and searching reminders across multiple lists with due dates, priorities, and notes.

Category
访问服务器

README

Apple Reminders MCP Server

A Model Context Protocol (MCP) server that provides seamless integration between Claude and macOS Apple Reminders app. Built with TypeScript and AppleScript for reliable, native Reminders access.

Features

  • Complete Reminders Management: Create, read, update, and delete reminders
  • List Management: Access and organize reminders across multiple lists
  • Advanced Filtering: Search by text, filter by completion status, or target specific lists
  • Rich Metadata: Due dates, priorities, notes, creation/modification timestamps
  • Native Integration: Direct AppleScript integration with zero external dependencies
  • Type-Safe: Built with TypeScript for reliability and maintainability

Requirements

  • macOS: This server uses AppleScript and requires macOS with the Reminders app
  • Node.js: Version 16 or higher
  • Claude Desktop or Claude Code CLI: For MCP integration

Installation

From Source

  1. Clone this repository:
git clone https://github.com/dbmcco/apple-reminders-mcp.git
cd apple-reminders-mcp
  1. Install dependencies:
npm install
  1. Build the server:
npm run build

Configuration

For Claude Desktop

Add this to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json):

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

For Claude Code CLI

Run this command:

claude mcp add -s user reminders node /absolute/path/to/apple-reminders-mcp/dist/index.js

Important: Replace /absolute/path/to/apple-reminders-mcp with the actual path where you cloned this repository.

Available MCP Tools

list_reminder_lists

Get all available reminder lists.

Returns: Array of lists with name and id properties.

Example:

// Response:
[
  {"name": "Reminders", "id": "x-apple-reminder://..."},
  {"name": "Work", "id": "x-apple-reminder://..."},
  {"name": "Personal", "id": "x-apple-reminder://..."}
]

get_reminders

Retrieve reminders with optional filtering.

Parameters:

  • listName (string, optional): Filter by specific list name
  • completed (boolean, optional): Filter by completion status
  • searchTerm (string, optional): Search in names and bodies

Returns: Array of reminder objects with full metadata.

Examples:

// Get all incomplete reminders
get_reminders(undefined, false)

// Get all reminders from "Work" list
get_reminders("Work")

// Get completed reminders from "Personal" list
get_reminders("Personal", true)

// Search for reminders containing "meeting"
get_reminders(undefined, undefined, "meeting")

create_reminder

Create a new reminder in a specified list.

Parameters:

  • name (string, required): Reminder title
  • listName (string, required): Target list name
  • body (string, optional): Notes/description
  • dueDate (string, optional): Due date in format "MM/DD/YYYY HH:MM AM/PM"
  • priority (number, optional): 0=none, 1=high, 5=medium, 9=low

Returns: ID of the created reminder.

Examples:

// Simple reminder
create_reminder("Buy groceries", "Personal")

// Reminder with due date and priority
create_reminder(
  "Submit report",
  "Work",
  "Include Q4 metrics",
  "12/31/2025 5:00 PM",
  1
)

// Reminder with notes
create_reminder(
  "Call dentist",
  "Personal",
  "Schedule annual checkup"
)

update_reminder

Update an existing reminder.

Parameters:

  • reminderId (string, required): ID of the reminder to update
  • name (string, optional): New title
  • body (string, optional): New notes
  • completed (boolean, optional): Completion status
  • dueDate (string, optional): New due date
  • priority (number, optional): New priority

Examples:

// Mark reminder as complete
update_reminder("x-apple-reminder://...", {completed: true})

// Update due date
update_reminder("x-apple-reminder://...", {
  dueDate: "01/15/2026 2:00 PM"
})

// Update multiple fields
update_reminder("x-apple-reminder://...", {
  name: "Updated title",
  body: "New notes",
  priority: 1
})

delete_reminder

Delete a reminder permanently.

Parameters:

  • reminderId (string, required): ID of the reminder to delete

Example:

delete_reminder("x-apple-reminder://...")

search_reminders

Search for reminders by text in names or bodies.

Parameters:

  • searchTerm (string, required): Text to search for

Returns: Array of matching reminder objects.

Example:

// Find all reminders mentioning "Claude"
search_reminders("Claude")

Usage Examples

Example 1: Daily Task Management

You: Show me all incomplete tasks from my "Today" list
Claude: [uses get_reminders("Today", false)]

You: Mark the first one as complete
Claude: [uses update_reminder with completed: true]

Example 2: Quick Capture

You: Remind me to call John tomorrow at 2pm
Claude: [uses create_reminder with due date]

Example 3: Project Organization

You: Show me all reminders related to the "Website" project
Claude: [uses search_reminders("Website")]

You: Move them all to the "Work" list
Claude: [uses update_reminder for each result]

Example 4: Weekly Review

You: What did I complete this week in my "Personal" list?
Claude: [uses get_reminders("Personal", true)]

Data Model

Reminder Object

{
  id: string;                 // Unique reminder ID
  name: string;               // Reminder title
  body?: string;              // Optional notes/description
  completed: boolean;         // Completion status
  list: string;               // Parent list name
  dueDate?: string;           // Optional due date
  priority: number;           // 0=none, 1=high, 5=medium, 9=low
  creationDate: string;       // When reminder was created
  modificationDate: string;   // When last modified
}

RemindersList Object

{
  name: string;  // List display name
  id: string;    // Unique list ID
}

Development

Build

npm run build

Watch Mode

npm run dev

Run Server Directly

npm run start

Architecture

This MCP server uses a clean architecture:

  1. MCP Server Layer (index.ts): Handles MCP protocol communication
  2. AppleScript Executor (applescript-executor.ts): Manages all Reminders app interactions
  3. Type Safety: Zod validation and TypeScript for reliability

The AppleScript integration uses osascript for direct system integration, avoiding external dependencies and app translocation issues.

Troubleshooting

Permission Issues

If you get permission errors, ensure:

  1. Terminal (or your app) has Automation permissions for Reminders
  2. Go to System Preferences > Security & Privacy > Privacy > Automation
  3. Enable access for the app running this server

Date Format Issues

Due dates must use the format: "MM/DD/YYYY HH:MM AM/PM"

Examples:

  • "12/25/2025 9:00 AM"
  • "01/01/2026 11:30 PM"

Reminder IDs

Reminder IDs are system-generated Apple URLs (e.g., x-apple-reminder://...). They're not portable across systems but are stable within a single macOS installation.

Credits

Built with Claude (Anthropic) using the Model Context Protocol SDK.

License

MIT License - see LICENSE file for details

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

Support

For issues, questions, or feature requests, please open an issue on GitHub.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选