MCP Catalogs
Home

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
Score8533
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
File SystemDeveloper ToolsAI / LLM Tools
LanguagePythonJava
Last commit2 mo ago9 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

  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

MCP-PDF-Extractor-server · Install

Installation

  1. **Prerequisites**:

- Java 23+ - Maven 3.6+

  1. **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 ``

  1. **Configure**:

Edit src/main/resources/application.properties if needed

  1. **Run**:

```bash # HTTP/SSE mode mvn spring-boot:run

# STDIO mode mvn spring-boot:run -- --stdio ```

  1. **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"] } } } ``

Comparison generated from public README + GitHub signals. Last updated automatically.