MCP OCR Server
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., "@MCP OCR ServerExtract the text from https://example.com/invoice.png"
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.
MCP OCR Server
A production-grade OCR server built using MCP (Model Context Protocol) that provides OCR capabilities through a simple interface.
Features
Extract text from images using Tesseract OCR
Support for multiple input types:
Local image files
Image URLs
Raw image bytes
Automatic Tesseract installation
Support for multiple languages
Production-ready error handling
Related MCP server: OCR MCP Service
Installation
# Using pip
pip install mcp-ocr
# Using uv
uv pip install mcp-ocrTesseract will be installed automatically on supported platforms:
macOS (via Homebrew)
Linux (via apt, dnf, or pacman)
Windows (manual installation instructions provided)
Usage
As an MCP Server
Start the server:
python -m mcp_ocrConfigure Claude for Desktop: Add to
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"ocr": {
"command": "python",
"args": ["-m", "mcp_ocr"]
}
}
}Available Tools
perform_ocr
Extract text from images:
# From file
perform_ocr("/path/to/image.jpg")
# From URL
perform_ocr("https://example.com/image.jpg")
# From bytes
perform_ocr(image_bytes)get_supported_languages
List available OCR languages:
get_supported_languages()Development
Clone the repository:
git clone https://github.com/rjn32s/mcp-ocr.git
cd mcp-ocrSet up development environment:
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e .Run tests:
pytestContributing
Fork the repository
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
Security
Never commit API tokens or sensitive credentials
Use environment variables or secure credential storage
Follow GitHub's security best practices
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
This server cannot be deployed
Maintenance
Related MCP Connectors
OCR and document understanding: extract text from images, then summarize or translate it.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Document conversion and OCR for AI agents: PDF, Office docs, images to text.
Arabic-first OCR, translation and document extraction. First call mints a free trial key.
Related MCP Servers
- AlicenseAqualityCmaintenanceA Model Context Protocol server that extracts images from URLs or base64 data and converts them into a format suitable for LLM analysis, allowing AI models to process and understand visual content.3188 npm20MIT
- AlicenseAqualityDmaintenanceEnables AI agents to recognize and extract text from images using PaddleOCR, supporting both file paths and base64 input with structured results including confidence scores and text positions.21MIT
- FlicenseAqualityDmaintenanceA Tesseract.js-based server that enables image-to-text recognition within MCP-compatible environments like Cursor. It supports multiple languages and common image formats, allowing users to extract text from local files using natural language commands.2-
- FlicenseAqualityDmaintenanceExtracts text from images and browser screenshots locally using Tesseract.js, without sending image data to the LLM.2-