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 | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsFile System |
| Language | Python | Python |
| Last commit | 2 mo ago | this 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
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servermaven-decoder-mcp · Install
Installation
One-Line Install (Recommended)
curl -fsSL https://raw.githubusercontent.com/salitaba/maven-decoder-mcp/main/install.sh | bashUsing 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-mcpUsing npm
npm install -g maven-decoder-mcp
maven-decoder-mcpDocker
docker run --rm -it \
-v ~/.m2:/home/mcpuser/.m2 \
-v $(pwd):/workspace \
ali79taba/maven-decoder-mcp:latestClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"maven-decoder": {
"command": "uvx",
"args": ["maven-decoder-mcp"]
}
}
}