MCP Catalogs
Home

everything vs wappmcp

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

everything
by modelcontextprotocol
wappmcp
by vaibhavpandeyvpz
Stars★ 85,748★ 3
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
CommunicationDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

everything · Summary

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

wappmcp · Summary

WhatsApp Web MCP server enabling message management and event notifications through stdio.

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

wappmcp · Use cases

  • Integrate WhatsApp messaging into AI workflows through MCP tools
  • Automate message handling and response generation for WhatsApp
  • Monitor and respond to incoming WhatsApp messages through notification channels

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

wappmcp · Install

Installation:

npm install -g wappmcp

Configuration:

npx wappmcp configure

Start the server:

npx wappmcp mcp

To enable notifications:

npx wappmcp mcp --channels

Claude Desktop configuration (add to claude_desktop_config.json):

{
  "mcpServers": {
    "whatsapp": {
      "command": "npx",
      "args": ["wappmcp", "mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.