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 | — | — |
| Score | 85 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM Tools |
| Language | Python | Java |
| Last commit | 2 mo ago | 4 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
- 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_serverLSP4J-MCP · Install
Installation
Prerequisites
- Java 21+
- Maven 3.8+
- JDTLS installed (e.g., via Homebrew:
brew install jdtls)
Build
mvn clean packageThis 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"
}
}
}
}