by silverbzh
Easily convert PDF content into clean markdown text with Lizeur’s OCR text recognition, using Mistral AI’s smart OCR and
Extracts text content from PDF files and converts it to clean markdown format using Mistral AI's OCR service. Features intelligent caching to avoid reprocessing the same documents.
Lizeur (PDF OCR) is a community-built MCP server published by silverbzh that provides AI assistants with tools and capabilities via the Model Context Protocol. Easily convert PDF content into clean markdown text with Lizeur’s OCR text recognition, using Mistral AI’s smart OCR and It is categorized under file systems, ai ml.
You can install Lizeur (PDF OCR) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Lizeur (PDF OCR) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Read, analyze, and understand files in your project
Example
Summarize README, analyze code structure, find TODO comments across codebase
Navigate large codebases 5x faster, understand projects quickly
Create, move, rename, and organize files based on natural language instructions
Example
Organize downloads by file type, rename files following convention, batch process images
Save hours on manual file organization
Search files for patterns, extract data, find information across directories
Example
Find all config files with API keys, extract emails from documents, search logs for errors
Find information instantly instead of manual grep/find
Share your MCP server with the developer community
Lizeur (PDF OCR) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Lizeur (PDF OCR) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Lizeur (PDF OCR) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Lizeur (PDF OCR) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Lizeur (PDF OCR) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Lizeur (PDF OCR) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Lizeur (PDF OCR) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: Lizeur (PDF OCR) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Lizeur (PDF OCR) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Lizeur (PDF OCR) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 50
Lizeur is a Model Context Protocol (MCP) server that enables AI assistants to extract and read content from PDF documents using Mistral AI's OCR capabilities. It provides a simple interface for converting PDF files to markdown text that can be easily consumed by AI models.
<a href="https://glama.ai/mcp/servers/@SilverBzH/lizeur"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@SilverBzH/lizeur/badge" alt="Lizeur MCP server" /> </a>pip install lizeur
And add the following configuration to your mcp.json file:
Note: Lizeur will be installed in the python3.10 folder. If this folder is not in your system PATH, your IDE may not be able to detect the lizeur binary.
Solution: You can add the full path to the lizeur binary in the command field to ensure your IDE can locate it.
{
"mcpServers": {
"lizeur": {
"command": "lizeur",
"env": {
"MISTRAL_API_KEY": "your-mistral-api-key-here",
"CACHE_PATH": "your cache path",
}
}
}
}
git clone https://github.com/SilverBzH/lizeur
cd lizeur
# Create a virtual environment
uv venv --python 3.10
# Activate the virtual environment
# On macOS/Linux:
source .venv/bin/activate
# On Windows:
# .venv\Scripts\activate
# Install dependencies
uv sync
# Build the package
uv build
# Install the package system-wide
uv pip install --system .
This will install the lizeur command globally on your system.
Once configured, the MCP server provides two tools that can be used by AI assistants:
read_pdfread_pdfabsolute_path (string) - The absolute path to the PDF fileread_pdf_textread_pdf_textabsolute_path (string) - The absolute path to the PDF fileThe AI assistant can now use the tools like this:
What the OP command looks like for this specific controller, here is the doc /path/to/document.pdf
The MCP server will:
Note: Use read_pdf_text when you only need the text content, or read_pdf when you need the complete OCR response with metadata. read_pdf can be confusion for some agent if the pdf file is big.
# Install in development mode
uv pip install -e .
# Run the server directly
python main.py
main.py - Main server implementation with FastMCP integrationpyproject.toml - Project configuration and dependenciesuv.lock - Locked dependency versionsmcp[cli]>=1.12.4 - Model Context Protocol implementationmistralai>=0.0.10 - Mistral AI Python clientThis project is licensed under the MIT License.
For issues and questions, please refer to the project repository or contact the maintainers.
Generate boilerplate files, apply templates, create project structures
Example
Create React component with tests and styles, generate OpenAPI spec, scaffold new project
Eliminate repetitive file creation work
Prerequisites
Time Estimate
10-20 minutes including configuration
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server provides file I/O operations (read, write, search, metadata) as tools Claude can invoke with natural language instructions.
Protocols
Compatibility
✓ Use when
Use for code analysis, file organization, content search, template generation, and automating repetitive file operations. Best for local development workflows.
✗ Avoid when
Avoid for system-critical files, sensitive credentials, production environments, or when file integrity is paramount. Don't use on files you can't afford to lose.