everything vs mcp-walichat
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-walichat by walichat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-walichat · Summary
WhatsApp MCP connector for AI clients to automate messaging, analyze conversations, and manage groups via WaliChat API.
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
mcp-walichat · Use cases
- Automate customer service responses through WhatsApp from AI assistants
- Send bulk messages and campaigns to WhatsApp contacts from AI prompts
- Analyze chat conversations for insights and sentiment analysis
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-everythingmcp-walichat · Install
Installation
Local Installation
npm install mcp-walichatHTTP Streaming (Recommended)
For clients that support HTTP streaming, add the following configuration:
**Claude Desktop Configuration** Add to your claude_desktop_config.json:
{
"mcpServers": {
"walichat": {
"type": "http",
"url": "https://api.wali.chat/mcp?key=YOUR_WALICHAT_API_KEY"
}
}
}**VS Code Copilot Configuration** In VS Code settings:
{
"mcp.servers": {
"walichat": {
"url": "https://api.wali.chat/mcp?key=YOUR_WALICHAT_API_KEY",
"transport": "http-streaming"
}
}
}