MCP Catalogs
Home

ultimate_mcp_server vs LSP4J-MCP

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

ultimate_mcp_server
by Dicklesworthstone
LSP4J-MCP
by stephanj
Stars★ 149★ 23
30d uses
Score8542
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Developer ToolsAI / LLM Tools
LanguagePythonJava
Last commit2 mo ago4 mo ago

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.

LSP4J-MCP · Summary

Java MCP server wrapping JDTLS to provide Java IDE features like symbol search and reference finding to AI assistants.

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

LSP4J-MCP · Use cases

  • AI assistants analyzing Java code structure and finding classes or methods
  • Refactoring assistance by finding all references to specific code elements
  • Code navigation to definitions and implementations of interfaces or methods
  • Understanding large Java codebases by exploring relationships between symbols

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

LSP4J-MCP · Install

Installation

Prerequisites

  • Java 21+
  • Maven 3.8+
  • JDTLS installed (e.g., via Homebrew: brew install jdtls)

Build

mvn clean package

This creates a shaded JAR at target/lsp4j-mcp-1.0.0-SNAPSHOT.jar.

Claude Desktop Configuration

Add to your .claude_desktop_config.json:

{
  "mcpServers": {
    "java-lsp": {
      "command": "java",
      "args": [
        "-jar",
        "/path/to/LSP4J-MCP/target/lsp4j-mcp-1.0.0-SNAPSHOT.jar",
        "/path/to/your/java/project",
        "jdtls"
      ],
      "env": {
        "LOG_FILE": "/tmp/lsp4j-mcp.log"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.