Mistral OCR MCP Server
Converts OCR results from processed local documents and images into structured Markdown format.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mistral OCR MCP ServerConvert the document at ~/Documents/invoice.pdf to markdown"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mistral OCR MCP Server
A Model Context Protocol (MCP) server that enables Claude to perform OCR (Optical Character Recognition) on local files using Mistral AI's document processing capabilities.
Setup
Get a Mistral API key from Mistral AI Console
Add to Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"mistral-ocr": {
"command": "uvx",
"args": ["--from", "/path/to/mistral-ocr-mcp", "mistral-ocr-mcp"],
"env": {
"MISTRAL_API_KEY": "your_api_key_here"
}
}
}
}Replace /path/to/mistral-ocr-mcp with the actual path to this directory.
Related MCP server: DocMistral MCP Server
Usage
ocr_local_file
Process local files with OCR and convert to markdown format.
file_path: Path to the local file to processoutput_path: Optional output path for markdown file (defaults to same name with .md extension)include_image_base64: Whether to include base64 encoded images in response
Examples
Process this document with OCR: /path/to/document.pdf
Extract text from this image: /path/to/image.jpg
OCR this file and save to custom location: /path/to/input.png with output /path/to/output.mdTroubleshooting
API key error: Set
MISTRAL_API_KEYin your environmentFile not found: Check that the file path exists and is accessible
Unsupported format: Ensure the file is a supported image or document format
Rate limit: Wait and try again
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server: convert PDFs to clean, LLM-ready Markdown with tables, formulas and OCR.
Document-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
Document conversion MCP server: PDF to Markdown, image OCR, spreadsheet parsing.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that lets AI assistants read and visually analyze local documents — PDFs, Excel spreadsheets, CSV files, Word documents, PowerPoint presentations, and images.425 npmMIT
- AlicenseNot gradedqualityAmaintenanceConverts documents and images to Markdown using Mistral AI's OCR, enabling AI-powered document processing via MCP-compatible clients like Claude Desktop.29 npm2MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables Claude Code and other MCP clients to analyze local images using Ollama's multimodal models, with privacy as images are processed locally.1MIT
- AlicenseNot gradedqualityBmaintenanceAn MCP server that gives text-only LLMs like DeepSeek vision capabilities by OCRing images, PDFs, Office documents, and text files into pure text. It provides tools like read_document and ocr_image to enable file analysis.5MIT