MCP Catalogs
Home

everything vs maven-decoder-mcp

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

everything
by modelcontextprotocol
maven-decoder-mcp
by salitaba
Stars★ 85,748★ 18
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsFile System
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

maven-decoder-mcp · Summary

An MCP server for analyzing Maven jar files, extracting source code, and resolving dependencies in Java projects.

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

maven-decoder-mcp · Use cases

  • AI agents analyzing Java dependencies in Maven projects
  • Decompiling compiled classes when source jars are unavailable
  • Finding and resolving Maven dependency conflicts
  • Extracting source code from specific Java classes or methods

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

maven-decoder-mcp · Install

Installation

One-Line Install (Recommended)
curl -fsSL https://raw.githubusercontent.com/salitaba/maven-decoder-mcp/main/install.sh | bash
Using uvx
# Install uv (if not installed)
curl -Ls https://astral.sh/uv/install.sh | sh
# Ensure your shell PATH is updated

# Run the server via uvx
uvx maven-decoder-mcp
Using npm
npm install -g maven-decoder-mcp
maven-decoder-mcp
Docker
docker run --rm -it \
  -v ~/.m2:/home/mcpuser/.m2 \
  -v $(pwd):/workspace \
  ali79taba/maven-decoder-mcp:latest
Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "maven-decoder": {
      "command": "uvx",
      "args": ["maven-decoder-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.