MCP Catalogs
Home

filesystem vs MCP-PDF-Extractor-server

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

filesystem
by modelcontextprotocol
MCP-PDF-Extractor-server
by RayenMalouche
Stars★ 85,748★ 0
30d uses
Score7733
Official
Categories
File SystemDeveloper ToolsProductivity
File SystemDeveloper ToolsAI / LLM Tools
LanguageTypeScriptJava
Last committhis month9 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

MCP-PDF-Extractor-server · Summary

Java-based MCP server using Apache Tika to extract content and metadata from PDFs, DOCX and other documents.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.