mac_messages_mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mac_messages_mcp by carterlasalle | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 284 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | CommunicationFile SystemAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
mac_messages_mcp · Summary
A Python MCP server that bridges macOS Messages app with LLMs for secure querying and analysis of iMessage conversations.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mac_messages_mcp · Use cases
- Automating message responses and managing conversations with AI assistance
- Searching and analyzing message history for specific information or patterns
- Processing and organizing shared attachments and media from conversations
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mac_messages_mcp · Install
Installation
Prerequisites
- macOS (tested on macOS 11+)
- Python 3.10+
- uv package manager
Quick Install
uv pip install mac-messages-mcpClaude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"messages": {
"command": "uvx",
"args": [
"mac-messages-mcp"
]
}
}
}Full Disk Access Permission
⚠️ This application requires **Full Disk Access** permission for your terminal or application to access the Messages database.
To grant Full Disk Access:
- Open **System Preferences/Settings** > **Security & Privacy/Privacy** > **Full Disk Access**
- Click the lock icon to make changes
- Add your terminal app (Terminal, iTerm2, etc.) or Claude Desktop/Cursor to the list
- Restart your terminal or application after granting permission
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything