loading…
Search for a command to run...
loading…
An MCP server that enables Claude to perform OCR on local files using Mistral AI's document processing capabilities. It converts documents and images into markd
An MCP server that enables Claude to perform OCR on local files using Mistral AI's document processing capabilities. It converts documents and images into markdown format for seamless analysis and interaction.
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.
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.
ocr_local_fileProcess 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 responseProcess 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.md
MISTRAL_API_KEY in your environmentДобавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mistral-ocr-mcp-server": {
"command": "npx",
"args": []
}
}
}