mac_messages_mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
mac_messages_mcp by carterlasalle | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 284 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | 沟通协作本地文件系统AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
mac_messages_mcp · 概述
一个Python MCP服务器,连接macOS Messages应用与LLM,安全地查询和分析iMessage对话。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mac_messages_mcp · 使用场景
- 自动回复消息并使用AI助手管理对话
- 搜索和分析消息历史以查找特定信息或模式
- 处理和组织对话中共享的附件和媒体
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mac_messages_mcp · 安装
安装
先决条件
- macOS(已在macOS 11+上测试)
- Python 3.10+
- uv包管理器
快速安装
uv pip install mac-messages-mcpClaude Desktop集成
添加到claude_desktop_config.json:
{
"mcpServers": {
"messages": {
"command": "uvx",
"args": [
"mac-messages-mcp"
]
}
}
}完全磁盘访问权限
⚠️ 此应用程序需要终端或应用程序具有**完全磁盘访问**权限才能访问Messages数据库。
授予权限:
- 打开**系统偏好设置/设置** > **安全性与隐私/隐私** > **完全磁盘访问**
- 点击锁图标进行更改
- 将您的终端应用程序(Terminal、iTerm2等)或Claude Desktop/Cursor添加到列表中
- 授予权限后重新启动终端或应用程序
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 中安装。