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 | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 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-everythingwappmcp · Install
Installation:
npm install -g wappmcpConfiguration:
npx wappmcp configureStart the server:
npx wappmcp mcpTo enable notifications:
npx wappmcp mcp --channelsClaude Desktop configuration (add to claude_desktop_config.json):
{
"mcpServers": {
"whatsapp": {
"command": "npx",
"args": ["wappmcp", "mcp"]
}
}
}