ultimate_mcp_server vs MCP-PDF-Extractor-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | MCP-PDF-Extractor-server by RayenMalouche | |
|---|---|---|
| Stars | ★ 149 | ★ 0 |
| 30d uses | — | — |
| Score | 85 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | File SystemDeveloper ToolsAI / LLM Tools |
| Language | Python | Java |
| Last commit | 2 mo ago | 9 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-PDF-Extractor-server · Summary
Java-based MCP server using Apache Tika to extract content and metadata from PDFs, DOCX and other documents.
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-PDF-Extractor-server · Use cases
- Processing and extracting content from local documents in secure environments without internet access
- Integrating document extraction capabilities into MCP-enabled AI assistants like Claude Desktop
- Providing a REST API for web applications to serve styled HTML content from document files
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-PDF-Extractor-server · Install
Installation
- **Prerequisites**:
- Java 23+ - Maven 3.6+
- **Clone and Setup**:
``bash git clone https://github.com/RayenMalouche/MCP-PDF-Extractor-server.git cd MCP-PDF-Extractor-server mkdir files-to-extract mvn clean install ``
- **Configure**:
Edit src/main/resources/application.properties if needed
- **Run**:
```bash # HTTP/SSE mode mvn spring-boot:run
# STDIO mode mvn spring-boot:run -- --stdio ```
- **Configure Claude Desktop** (for MCP usage):
Add to your claude_desktop_config.json: ``json { "mcpServers": { "tika-extractor": { "command": "java", "args": ["-jar", "path/to/your/target/TikaExtractorMCPServer-1.0.0.jar", "--stdio"] } } } ``