MCP Catalogs
Home

everything vs welink

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

everything
by modelcontextprotocol
welink
by runzhliu
Stars★ 85,748★ 142
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsCommunicationDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

welink · Summary

WeLink is an AI-powered platform for analyzing WeChat chat data, featuring MCP server integration for direct querying in Claude Code.

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

welink · Use cases

  • Query chat history directly in Claude Code using natural language questions
  • Analyze relationship dynamics and communication patterns with contacts
  • Create AI clones of contacts for simulated conversations based on their chat style

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

welink · Install

Installation

  1. Clone the repository: git clone https://github.com/runzhliu/welink.git
  2. Follow the installation instructions in the README for Docker, Windows, or macOS
  3. Configure your WeChat data export
  4. Set up MCP server by following instructions in mcp-server/README.md
  5. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "welink": {
      "command": "node",
      "args": ["path/to/welink/mcp-server/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.