MCP Catalogs
Home

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
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
CommunicationMediaAI / LLM Tools
LanguageTypeScriptGo
Last committhis monththis 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-everything

whatsapp-mcp · Install

Installation

  1. **Clone the repository**

``bash git clone https://github.com/verygoodplugins/whatsapp-mcp.git cd whatsapp-mcp ``

  1. **Start the WhatsApp bridge**

``bash cd whatsapp-bridge go run . `` Scan the QR code with WhatsApp on your phone to authenticate.

  1. **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" ] } } } ``

Comparison generated from public README + GitHub signals. Last updated automatically.