time vs applescript-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | applescript-mcp by peakmojo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 457 |
| 30天用量 | — | — |
| 综合分 | 77 | 51 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 效率工具本地文件系统开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 3 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
applescript-mcp · 概述
一个MCP服务器,允许通过AppleScript在Mac上执行脚本,实现AI对系统应用和文件的控制。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
applescript-mcp · 使用场景
- 通过AI自动化日历事件和提醒
- 读取和管理备忘录和消息应用
- 执行文件系统操作和shell命令
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}applescript-mcp · 安装
安装
Node.js
{
"mcpServers": {
"applescript_execute": {
"command": "npx",
"args": [
"@peakmojo/applescript-mcp"
]
}
}
}Python (uvx)
{
"mcpServers": {
"applescript_execute": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/peakmojo/applescript-mcp",
"mcp-server-applescript"
]
}
}
}Python (本地开发)
- 克隆仓库
git clone https://github.com/peakmojo/applescript-mcp.git- 配置Claude Desktop
{
"mcpServers": {
"applescript_execute": {
"command": "uv",
"args": [
"--directory",
"/path/to/your/repo",
"run",
"mcp-server-applescript"
]
}
}
}