Document Understanding MCP Server
About
A document reading, search, and metadata server to provide access to PDFs (and, in the future, other formats) to LLMs via the Model Context Protocol (MCP)
Details
- Author
- jaesharp
- GitHub stars
- 2
- Downloads
- 190
- Categories
- Other
Jump to
- Extracts text content with automatic OCR fallback for scanned pages
- Retrieves PDF metadata (author, title, dates)
- Provides detailed layout info (text blocks, images, drawings with coordinates)
- Extracts tables from PDF pages using tabula-py
- Searches for exact text occurrences and returns bounding boxes
- Detects languages of extracted text content
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Document Understanding MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install Python 3.11+, uv, sync dependencies from pyproject.toml, and install Java (for table extraction) and Tesseract (for OCR). Set the required environment variable DOCUMENT_UNDERSTANDING_BASE_PATH to the directory the server may read PDFs from. The server offers tools that AI models can invoke via the MCP interface.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"document understanding mcp server": {
"document-understanding-mcp-server": {
"command": "uv",
"args": [
"venv",
"#",
"Create",
".venv"
]
}
}
}
}
McpServers
{
"document-understanding-mcp-server": {
"command": "uv",
"args": [
"venv",
"#",
"Create",
".venv"
]
}
}
Document Understanding MCP Server
> ⚠️ WARNING: This server is currently in alpha stage and is intended for local development and testing only. It should not be deployed in production environments or exposed to untrusted networks. Please review SECURITY.md for important security considerations before running this server.
MCP server providing tools to extract text, metadata, layout, and search documents (primarily PDFs). This server implements the Model Context Protocol (MCP) specification, allowing AI models to interact with PDF documents through a standardized interface.
Overview
The Document Understanding MCP Server provides a set of tools for extracting information from PDF documents, including:
- Text content extraction (with OCR fallback for scanned documents)
- Metadata extraction (author, title, creation date, etc.)
- Layout information extraction (text blocks, images, drawings)
- Table extraction
- Image extraction
- Document outline/bookmarks extraction
- Text search functionality
- Language detection
These tools can be used by AI models to analyze and understand PDF documents, enabling more sophisticated document processing workflows.
> Future Plans: We're working on expanding support to multiple document types beyond PDF. See docs/plans/README.md for details on upcoming architectural changes.
Setup and Installation
1. Clone the repository:
git clone <repo-url>
cd document-understanding-mcp-server
2. Install Python: Ensure you have Python 3.11+ installed.
3. Install
uv: It's recommended to use uv for environment management. pip install uv
4. Create and Sync Virtual Environment:
uv venv # Create .venv
# Install core dependencies
uv pip sync pyproject.toml
# For development/testing, install optional extras:
uv pip install -e '.[dev,test]'
5. (Required for Table Extraction) Install Java: The
extract_tables tool relies on tabula-py, which requires a Java Runtime Environment (JRE). Install a JRE (e.g., OpenJDK) suitable for your system and ensure java is accessible in your system's PATH.6. (Required for OCR Fallback) Install Tesseract: The OCR fallback in
extract_pdf_contents relies on pytesseract, which requires the Tesseract OCR engine itself. Install Tesseract for your OS (see Tesseract Installation) and ensure the tesseract command is in your system's PATH.7. Configure Base Path (Mandatory unless overridden): Define the
DOCUMENT_UNDERSTANDING_BASE_PATH environment variable. This is the only directory the server will read PDFs from by default. Example: export DOCUMENT_UNDERSTANDING_BASE_PATH=/path/to/your/pdf_working_directory
Configuration
DOCUMENT_UNDERSTANDING_BASE_PATH (Environment Variable, Required): Specifies the absolute path to the directory the server is allowed to access for reading PDFs. The server will refuse to start if this is not set, unless --allow-any-path is used.
DOCUMENT_UNDERSTANDING_LOG_LEVEL (Environment Variable): Sets the minimum log level for console output (e.g., DEBUG, INFO, WARNING). Default=INFO.
DOCUMENT_UNDERSTANDING_LOG_FORMAT (Environment Variable): Sets console log format (plain or json). Default=plain.
DOCUMENT_UNDERSTANDING_LOG_FILE (Environment Variable): If set, specifies a path to write structured JSON logs (e.g., .tmp/logs/server.log). Directory will be created. Default=Disabled.
DOCUMENT_UNDERSTANDING_LOG_FILE_LEVEL (Environment Variable): Minimum level for file logging (e.g., DEBUG, INFO). Default=INFO.
DOCUMENT_UNDERSTANDING_DEFAULT_LANG (Environment Variable): Sets the default OCR language (e.g., eng, fra). Defaults to eng if not set.
ENABLE_SAVE_IMAGES_TO_FILES (Environment Variable): When set to true, enables saving extracted images to files when using the extract_images tool with the output_directory parameter. Default=false.
SAFE_OUTPUT_DIRECTORIES (Environment Variable): Colon-separated list of directories where images can be saved when ENABLE_SAVE_IMAGES_TO_FILES=true but ALLOW_ANY_PATH=false. For example: /tmp:/var/output:/data/images.
Capability Override / Enable Flags (Command-line):
--allow-no-java: If the Java runtime (required for extract_tables) is not found, the server will normally exit. Use this flag to allow startup, but the extract_tables tool will be disabled.
--allow-no-tesseract: If the Tesseract executable (required for OCR fallback) is not found, the server will normally exit. Use this flag to allow startup, but OCR fallback in extract_pdf_contents will be disabled.
--enable-experimental: Enables experimental tools (like find_nearby_content) which are disabled by default.
--allow-any-path: (SECURITY RISK) If set, disables the PDF_SERVER_BASE_PATH restriction and allows the server to attempt reading files from any path provided in tool arguments. Use with extreme caution and only in trusted environments.
Capability / Dependency Matrix
The availability or full functionality of certain tools depends on external dependencies or flags.
| Tool Name | Capability | Dependency / Trigger | Check Performed At | Control Flag |
|------------------------|-------------------------|----------------------|--------------------|--------------------------|
| extract_tables | java_runtime | Java Runtime (JRE) | Server Startup | --allow-no-java |
| extract_pdf_contents | tesseract_ocr (Opt.) | Tesseract OCR | Server Startup | --allow-no-tesseract |
| (Other Tools) | (None) | Python Packages | Installation | (N/A) |
\Note: If Tesseract OCR is unavailable (and --allow-no-tesseract is used), OCR fallback is disabled.
Tools
The server implements the following tools. The list presented to the LLM via the list_tools call is dynamic and depends on detected capabilities (e.g., Java availability) and startup flags.
See src/document_understanding/models.py for response schemas (e.g., TextContentResponse, MetadataResponse, etc.). Error responses follow the ErrorResponse schema.
Guidance: The pdf_path argument in all tools must refer to a file path accessible within the server's environment.
1. extract_pdf_contents
Description: Extracts text content from specified pages of a local PDF file. Uses direct text extraction with OCR fallback for scanned or image-heavy pages.
Arguments:
pdf_path (string, required): Path to the local PDF file.
pages (string, optional): Page spec (1-based, ranges, neg indices). E.g., "1, 3-5, -1". Default=all.
ocr_language (string, optional): OCR language(s) for Tesseract (e.g., "eng", "fra+eng"). Default='eng'.
password (string, optional): Password for encrypted PDFs.
Returns: TextContentResponse JSON.
Guidance: Best for getting the raw text of pages. Handles OCR automatically if needed. Use pages for specific sections. If dealing with non-English scanned text, set ocr_language.
2. extract_pdf_metadata
Description: Extracts metadata (author, title, dates) and checks for images/drawings in a PDF.
Arguments:
pdf_path (string, required): Path to the local PDF file.
password (string, optional): Password for encrypted PDFs.
Returns: MetadataResponse JSON.
Guidance: Use this first to get an overview of the PDF structure and properties (page count, title, author, etc.) and a hint about whether images/drawings are present.
3. search_pdf_text
Description: Searches for exact text occurrences within specified pages and returns bounding boxes.
Arguments:
pdf_path (string, required): Path to the local PDF file.
query (string, required): The text to search for (case-sensitive).
pages (string, optional): Page spec. Default=all.
password (string, optional): Password for encrypted PDFs.
Returns: SearchResponse JSON containing a list of matches with page number and rectangle coordinates.
Guidance: Useful for finding specific terms or phrases and their location.
4. extract_pdf_layout
Description: Extracts detailed layout info: text blocks, drawings, image placements (with coordinates).
Arguments:
pdf_path (string, required): Path to the local PDF file.
pages (string, optional): Page spec. Default=all.
include_images (boolean, optional): Include image info (xref, bbox, size). Default=False.
include_drawings (boolean, optional): Include vector drawing info. Default=False.
detail_level (string, optional): Text detail level ('blocks', 'lines', 'words'). Default='blocks'.
password (string, optional): Password for encrypted PDFs.
Returns: LayoutResponse JSON containing layout details per page.
Guidance: Use when spatial relationships are important or to understand page structure. Provides coordinates for text, images, and vector drawings. Can generate large responses for complex pages.
5. extract-images
Description: Extracts info about images (raster images, some other objects like Form XObjects).
Arguments:
pdf_path (string, required): Path to the local PDF file.
pages (string, optional): Page spec. Default=all.
include_data (boolean, optional): If true, include base64 image data. Default=false.
min_width (integer, optional): Minimum image width to include in results.
min_height (integer, optional): Minimum image height to include in results.
filter_bbox (array, optional): Bounding box to filter images by [x0, y0, x1, y1].
password (string, optional): Password for encrypted PDFs.
output_directory (string, optional): Directory to save extracted images to. Requires ENABLE_SAVE_IMAGES_TO_FILES=true environment variable.
save_without_returning_data (boolean, optional): If true, save images to files without returning base64 data in response. Default=false.
Returns: ImageExtractionResponse JSON.
Guidance: Returns image dimensions, page number, and internal reference (xref). Bounding box (bbox) is optional and may be missing if detection fails (e.g., for Form XObjects). Use include_data=True cautiously as it can return very large responses. When output_directory is specified and ENABLE_SAVE_IMAGES_TO_FILES=true, images will be saved to disk and the response will include file paths. Use save_without_returning_data=True to save images to files without including the potentially large base64 data in the response.
6. extract_tables
Description: Extracts tables from specified PDF pages into lists of lists.
Arguments:
pdf_path (string, required): Path to the local PDF file.
pages (string, optional): 'all' or comma-separated page numbers (1-based). Default=all.
password (string, optional): Password for encrypted PDFs.
Returns: TableExtractionResponse JSON. (Note: Current implementation returns list of dicts, see docs/KNOWN_ISSUES.md).
Guidance: Best effort table detection using tabula-py. Results depend heavily on table formatting (lines, spacing). May be slow. Note: This tool requires a Java runtime. If Java is not detected at server startup and the --allow-no-java flag was used, this tool will be unavailable.
7. detect-language
Description: Detects the language(s) of text content sampled from specified pages (defaults to page 1).
Arguments:
pdf_path (string, required): Path to the local PDF file.
pages (string, optional): Page spec for sampling. Default='1'.
sample_size (integer, optional): Max characters to sample. Default=2000.
password (string, optional): Password for encrypted PDFs.
Returns: LanguageDetectionResponse JSON.
Guidance: Useful for determining the primary language before processing or translation.
8. extract_pdf_outline
Description: Extracts the document outline (bookmarks/table of contents) from a PDF.
Arguments:
pdf_path (string, required): Path to the local PDF file.
password (string, optional): Password for encrypted PDFs.
Returns: OutlineExtractionResponse JSON containing the hierarchical outline structure.
Guidance: Use to extract the document's table of contents or bookmark structure. Returns an empty list if the document has no outline.
9. get_pdf_working_directory
Description: Returns the designated directory path where PDF files should be placed for processing.
Arguments: None.
Returns: JSON with status, working_directory (string or null), and optional message.
Guidance*: Call this tool to find out where to upload/place PDF files before calling other tools that require a pdf_path. If the server was started with --allow-any-path, working_directory will be null.
Testing
The test suite uses dynamically generated PDFs for all tests. No static PDF files are stored in the repository. The test fixtures in tests/conftest.py generate all necessary test PDFs at runtime, including:
- Simple text documents
- Documents with images
- Documents with drawings
- Documents with tables
- Documents with outlines/bookmarks
- Empty documents
- Encrypted documents
This approach ensures that all tests can run without requiring external files and makes the test suite more portable and self-contained.
Running Tests
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



