MCP Catalogs
Home

whatsapp-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

whatsapp-mcp
by felipeadeildo
everything
by modelcontextprotocol
Stars★ 70★ 85,748
30d uses
Score4577
Official
Categories
CommunicationProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit4 mo agothis month

whatsapp-mcp · Summary

WhatsApp MCP server integrates WhatsApp conversations with AI assistants through MCP tools, enabling message reading, searching, and sending.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

whatsapp-mcp · Use cases

  • Search across all WhatsApp messages for specific people or topics
  • Have AI assistants summarize or analyze conversations
  • Let AI draft and send WhatsApp messages on behalf of users
  • Integrate WhatsApp data into broader AI workflows

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 · Install

Docker Installation (Recommended)

  1. Clone and configure:
git clone https://github.com/felipeadeildo/whatsapp-mcp
cd whatsapp-mcp
cp .env.example .env
# Edit .env with your settings
  1. Start the server:
docker compose up -d
  1. Link WhatsApp (scan QR code from logs)
  1. Connect to Claude Desktop:

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "whatsapp": {
      "url": "http://localhost:8080/mcp/your-secret-api-key",
      "transport": "http"
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.