Description

MinerU MCP Server integrates with the MinerU document processing API to convert various document formats into Markdown. Built with FastMCP 3.x, it supports PDF, Word, PowerPoint, and image formats through both remote API and optional local deployment. The server provides tools for batch document parsing with configurable OCR, language selection, and page range filtering. Supports both stdio and streamable HTTP transport modes for flexible client integration.

Installation

git clone https://github.com/tongzhao9417/mineru_mcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "mineru": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}