ultimate_mcp_server vs mcp-java-sdk-examples
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-java-sdk-examples by thought2code | |
|---|---|---|
| Stars | ★ 149 | ★ 32 |
| 30d uses | — | — |
| Score | 85 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsFile SystemOther |
| Language | Python | Java |
| Last commit | 2 mo ago | 7 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.
mcp-java-sdk-examples · Summary
A collection of MCP server examples demonstrating different Java SDK implementations.
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
mcp-java-sdk-examples · Use cases
- Developers learning how to implement MCP servers using Java SDKs
- Organizations standardizing LLM integrations with Java applications
- Testing and prototyping file system operations through MCP
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_servermcp-java-sdk-examples · Install
Installation
This is a collection of examples, not a server itself. Each example has its own setup requirements. For the filesystem example:
- Clone the repository
- Navigate to the example directory:
cd mcp-server-filesystem - Build the project:
mvn package - Run the server:
java -jar target/mcp-server-filesystem-*.jar
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-java-sdk-examples": {
"command": "java",
"args": ["-jar", "/path/to/mcp-server-filesystem/target/mcp-server-filesystem-*.jar"]
}
}
}