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 | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsCommunicationDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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-everythingwelink · Install
Installation
- Clone the repository:
git clone https://github.com/runzhliu/welink.git - Follow the installation instructions in the README for Docker, Windows, or macOS
- Configure your WeChat data export
- Set up MCP server by following instructions in
mcp-server/README.md - Add to Claude Desktop configuration:
{
"mcpServers": {
"welink": {
"command": "node",
"args": ["path/to/welink/mcp-server/index.js"]
}
}
}