MCP Catalogs
Home

everything vs wanaku

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

everything
by modelcontextprotocol
wanaku
by wanaku-ai
Stars★ 85,748★ 112
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsOps & InfraAI / LLM Tools
LanguageTypeScriptJava
Last committhis monththis month

everything · Summary

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

wanaku · Summary

Wanaku MCP Router is a Java-based gateway that connects and routes MCP servers with extensive connectivity options.

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

wanaku · Use cases

  • Centralized management of multiple MCP servers in enterprise environments
  • Creating secure bridges between isolated AI applications and services
  • Extending AI capabilities with custom tools using Apache Camel components

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

wanaku · Install

Installation

Using JBang (requires Java 21+)

jbang app install wanaku@wanaku-ai/wanaku

Using Binary Download

  1. Download the latest binary from [GitHub Releases](https://github.com/wanaku-ai/wanaku/releases)
  2. Make the binary executable: chmod +x wanaku
  3. Add to PATH: sudo mv wanaku /usr/local/bin/

Basic Usage

# Authenticate with Wanaku router
wanaku auth login --url http://localhost:8080

# List available tools
wanaku tools list

# Add a new tool
wanaku tools add --uri http://example.com/api --service http

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "wanaku": {
      "command": "wanaku",
      "args": ["server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.