everything vs whatsapp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | whatsapp-mcp by verygoodplugins | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationMediaAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
whatsapp-mcp · Summary
WhatsApp MCP server enables Claude to read and send WhatsApp messages with full media support.
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
whatsapp-mcp · Use cases
- Automate message responses and management for WhatsApp conversations
- Search and analyze message history for specific information
- Send automated messages or media files to contacts or groups
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-everythingwhatsapp-mcp · Install
Installation
- **Clone the repository**
``bash git clone https://github.com/verygoodplugins/whatsapp-mcp.git cd whatsapp-mcp ``
- **Start the WhatsApp bridge**
``bash cd whatsapp-bridge go run . `` Scan the QR code with WhatsApp on your phone to authenticate.
- **Configure Claude Desktop**
Add to ~/Library/Application Support/Claude/claude_desktop_config.json: ``json { "mcpServers": { "whatsapp": { "command": "uv", "args": [ "--directory", "/path/to/whatsapp-mcp/whatsapp-mcp-server", "run", "main.py" ] } } } ``