MCP Catalogs
Home

everything vs titanmind-whatsapp-mcp

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

everything
by modelcontextprotocol
titanmind-whatsapp-mcp
by TitanmindAGI
Stars★ 85,748★ 18
30d uses
Score7737
Official
Categories
Developer ToolsAI / LLM ToolsOther
CommunicationAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis month10 mo ago

everything · Summary

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

titanmind-whatsapp-mcp · Summary

WhatsApp marketing and messaging MCP server using Titanmind for conversation management and template-based messaging.

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

titanmind-whatsapp-mcp · Use cases

  • Automated customer support through WhatsApp conversations
  • Marketing campaigns using approved message templates
  • Bulk messaging to customer lists with country-specific formatting

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

titanmind-whatsapp-mcp · Install

Installation

Prerequisites:

  • Python 3.10 or higher
  • API Key and Business Code from Titanmind

Using pipx:

# Install pipx
brew install pipx  # macOS
sudo apt install pipx  # Ubuntu/Debian

# Install Titanmind WhatsApp MCP
pipx install titanmind-whatsapp-mcp
pipx ensurepath
Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "TitanMindMCP": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.titanmind.so/whatsapp/mcp/",
        "--header",
        "api-key:XXXXXXXXXXXXXXXXXXXXXXX",
        "--header",
        "bus-code:XXXXXX"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.