AI Skill Hub 强烈推荐:开源MCP工具 是一款优质的MCP工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
macOS日历和提醒MCP服务器,29个工具
开源MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
macOS日历和提醒MCP服务器,29个工具
开源MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/PsychQuant/che-ical-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--mcp--": {
"command": "npx",
"args": ["-y", "che-ical-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 开源MCP工具 执行以下任务... Claude: [自动调用 开源MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__mcp__": {
"command": "npx",
"args": ["-y", "che-ical-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
macOS Calendar & Reminders MCP server - Native EventKit integration for complete calendar and task management.
---
## ⚠️ Claude Desktop.mcpbinstall is temporarily broken (2026-05-12) The.mcpbextension install for Claude Desktop cannot write to Calendar / Reminders on Claude Desktop 1.6608.2 and later (released ~2026-05-09). Write tools returnCalendar access denied; read tools still work. Use one of these instead until Anthropic ships a fix: | Path | Status | |------|--------| | Claude Code plugin (claude plugin install che-ical-mcp@psychquant-claude-plugins) | ✓ Works | | Legacyclaude_desktop_config.json(point Claude Desktop at the binary directly) | ⚠ Untested, may bypass the broken wrapper | | Google Calendar API + manual move to target calendar | ✓ Works | Tracking: upstreamanthropics/claude-code#58239, local#132. Detailed evidence + structural diagnosis in those threads. This banner will be removed once Anthropic restores.mcpbCalendar access.
---
"Search for events containing 'meeting'"
"Search for events with both 'project' AND 'review'"
"What do I have today?"
"Show me this week's schedule"
"Are there any conflicts if I schedule a meeting from 2-3 PM?"
"Create 3 weekly team meetings for the next 3 weeks"
"Copy the dentist appointment to my Work calendar"
"Move all events from 'Old Calendar' to 'New Calendar'"
"Delete all the cancelled events"
"Find duplicate events between 'IDOL' and 'Idol' calendars"
claude plugin install che-ical-mcp@che-ical-mcp
> **Inside Claude Code?** The slash-command equivalents `/plugin marketplace add PsychQuant/che-ical-mcp` and `/plugin install che-ical-mcp@che-ical-mcp` work the same way.
>
> **Add via git, not a raw URL.** The marketplace's plugin `source` is a same-repo relative path (`./plugin`), which only resolves when the marketplace is added through its Git repo (GitHub `owner/repo`, as above) — not via a direct URL to `marketplace.json`.
>
> The plugin is also still bundled in the `psychquant-claude-plugins` aggregator (`claude plugin install che-ical-mcp@psychquant-claude-plugins`); both serve the same versioned binary.
> **Note:** The plugin wraps the MCP binary with auto-download. If the binary is not found at `~/bin/CheICalMCP`, it will be downloaded from GitHub Releases on first use.
#### Option B: Install as standalone MCP
If you only need the MCP server without plugin features:
bash
git clone https://github.com/PsychQuant/che-ical-mcp.git
cd che-ical-mcp
make release && make install
⚠️ Swift 6 / Xcode 18 users: Do not use swift build directly — upstream MCP SDK has a concurrency error (swift-sdk#214). The Makefile auto-detects this and falls back to Swift 5 language mode.
On first use, macOS will prompt for Calendar and Reminders access - click "Allow".
The plugin wrapper auto-downloads on fresh installs, but does NOT replace an existing binary. To upgrade in place:
~/bin/CheICalMCP --self-update
This queries GitHub Releases for the latest tag, downloads the new binary, and atomically replaces the current one. If the binary is currently running as an MCP server, restart your MCP host (Claude Desktop / Claude Code) afterward to pick up the new version. Manual alternative if --self-update is unavailable: rm -f ~/bin/CheICalMCP && curl -L https://github.com/PsychQuant/che-ical-mcp/releases/latest/download/CheICalMCP -o ~/bin/CheICalMCP && chmod +x ~/bin/CheICalMCP.
---
```bash git clone https://github.com/PsychQuant/che-ical-mcp.git cd che-ical-mcp make release && make install
claude mcp add --scope user --transport stdio che-ical-mcp -- ~/bin/CheICalMCP ```
💡 Tip: Always install the binary to a local directory like ~/bin/. Avoid placing it in cloud-synced folders (Dropbox, iCloud, OneDrive) as file sync operations can cause MCP connection timeouts.
All 29 tools can be invoked directly from the command line without running the MCP server:
```bash
| Problem | Solution |
|---|---|
| Server disconnected | Rebuild with make release && make install |
| Permission denied | Grant Calendar/Reminders access in System Settings > Privacy & Security |
| Permission dialog never appears | See [Grant Permissions](#grant-permissions) for macOS Sequoia workaround |
| **Permission denied over SSH** | See [SSH Access](#ssh-access) below |
| **Permission denied under launchd** | See [launchd / Automation](#launchd--automation) below |
| **One service denied while every diagnostic reports green** | See [Silent permanent denial after upgrade](#silent-permanent-denial-after-upgrade-154) below |
| Calendar not found | Ensure the calendar is visible in macOS Calendar app |
| Reminders not syncing | Check iCloud sync in System Settings |
che-ical-mcp 是一个专为 macOS 设计的 MCP (Model Context Protocol) 服务端实现,旨在为 AI 助手提供对 macOS 日历 (Calendar) 和提醒事项 (Reminders) 的深度访问能力。通过该工具,AI 可以直接读取、查询及管理用户的日程安排,实现智能化的日程调度与任务管理。
该项目支持强大的自然语言日程管理功能。用户可以通过 Claude 等 AI 助手进行复杂的查询,例如搜索特定关键词的会议、查看当日或本周日程、检测日程冲突等。此外,它还支持自动化操作,如批量创建周期性会议、跨日历复制事件、移动或删除特定日历中的所有日程,极大提升了日程管理的智能化程度。
使用本项目需要 macOS 14.0 (Sonoma) 或更高版本的系统环境,这是为了确保能够通过最新的 TCC permission API 获取完整的日历与提醒事项访问权限。如果需要从源码构建,则必须安装 Xcode Command Line Tools。
可以通过 Claude 命令行工具直接安装插件:使用 `claude plugin install che-ical-mcp@che-ical-mcp`。若在 Claude Code 环境中,可使用对应的 slash-command 进行安装。此外,开发者也可以选择从源码构建,通过 `git clone` 项目仓库后,利用 Makefile 进行编译与安装。注意:针对 Swift 6 / Xcode 18 用户,Makefile 已自动处理了 MCP SDK 的并发错误兼容性。
安装完成后,即可通过 Claude 等支持 MCP 协议的客户端直接调用。用户可以使用自然语言指令,如“我今天有什么安排?”或“帮我把明天的会议移到后天”,AI 将通过 MCP 协议调用底层的工具集来执行实际的日历操作。请确保遵循 Apple 的代码签名规范以保证执行权限。
在配置 MCP 服务时,建议使用 `claude mcp add` 命令并指定 `--transport stdio`。特别提示:请务必将生成的二进制文件安装在本地目录(如 `~/bin/`),避免将其放置在 Dropbox、iCloud 或 OneDrive 等云同步文件夹中,以防止文件同步操作导致的 MCP 连接超时问题。
除了作为 MCP Server 运行外,本项目还提供 CLI Mode(命令行模式)。该模式允许用户不启动 MCP Server,直接通过命令行调用全部 29 个内置工具。这对于自动化脚本编写或在非 MCP 环境下进行快速测试非常有用。
针对常见问题,如果遇到 Server disconnected(服务器断开)的情况,建议重新执行 `make release && make install` 进行构建;若遇到 Permission denied(权限拒绝),请前往 macOS 系统设置中的“隐私与安全性”授予日历与提醒事项的访问权限;若权限弹窗未出现,请检查系统权限配置。
高质量的开源MCP工具,功能丰富
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,开源MCP工具 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | che-ical-mcp |
| 原始描述 | 开源MCP工具:macOS Calendar & Reminders MCP server with 29 tools — Native Swift EventKit inte。⭐29 · Swift |
| Topics | mcpai-toolsappleautomationcalendar |
| GitHub | https://github.com/PsychQuant/che-ical-mcp |
| License | MIT |
| 语言 | Swift |
收录时间:2026-06-23 · 更新时间:2026-06-23 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端