filesystem vs apple-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | apple-mcp by supermemoryai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 3,090 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 效率工具沟通协作AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 9 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
apple-mcp · 概述
Apple MCP服务器,将原生Apple应用转化为AI超能力,提供消息、备忘录、联系人等工具。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
apple-mcp · 使用场景
- 通过AI读取消息并发送基于上下文的回复来自动化通信
- AI分析笔记并创建提醒或日历事件的生产力工作流
- 通过AI基于自然语言查询搜索联系人、邮件和日历数据的信息检索
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
apple-mcp · 安装
安装
方法一:Smithery(推荐)
npx -y install-mcp apple-mcp --client claudeCursor用户:
npx -y install-mcp apple-mcp --client cursor方法二:手动设置
将以下内容添加到你的claude_desktop_config.json:
{
"mcpServers": {
"apple-mcp": {
"command": "bunx",
"args": ["--no-cache", "apple-mcp@latest"]
}
}
}首先,确保已安装bun:
brew install oven-sh/bun/bun