anythingmcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
anythingmcp by HelpCode-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 56 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
anythingmcp · Summary
Self-hosted MCP gateway connecting REST, SOAP/WSDL, GraphQL & SQL APIs to Claude, ChatGPT, Gemini, Copilot, Cursor.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
anythingmcp · Use cases
- Connect ERP systems like SAP, Oracle, Weclapp or Xentral to Claude Desktop for conversational querying
- Enable AI agents to track parcels using built-in adapters for DHL, DPD, GLS, Shipcloud and Sendcloud
- Bridge legacy SOAP/WSDL services to modern AI workflows with automatic WSDL parsing
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
anythingmcp · Install
Install with Docker (recommended):
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && ./setup.shOnce set up, open http://localhost:3000 and register the first user who automatically becomes admin.
To use with Claude Desktop, add this to claude_desktop_config.json:
{
"mcpServers": {
"anythingmcp": {
"command": "docker",
"args": ["run", "-p", "3000:3000", "helpcodeai/anythingmcp"]
}
}
}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