WeChat-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
WeChat-MCP by BiboyQG | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 191 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
WeChat-MCP · Summary
An MCP server that automates WeChat on macOS, allowing LLMs to read messages and send replies.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
WeChat-MCP · Use cases
- Automate customer service responses in WeChat business accounts
- Monitor multiple group chats and prioritize urgent messages
- Generate and publish daily Moments posts automatically
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
WeChat-MCP · Install
# Install via pip
pip install wechat-mcp-server
# Setup with Claude Desktop
{
"mcpServers": {
"wechat-mcp": {
"type": "stdio",
"command": "wechat-mcp"
}
}
}Note: Requires macOS Accessibility permissions for your terminal application.
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