MCP Catalogs
Home

ultimate_mcp_server vs maven-decoder-mcp

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

ultimate_mcp_server
by Dicklesworthstone
maven-decoder-mcp
by salitaba
Stars★ 149★ 18
30d uses
Score8545
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Developer ToolsAI / LLM ToolsFile System
LanguagePythonPython
Last commit2 mo agothis month

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

maven-decoder-mcp · Summary

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

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.