imagesorcery-mcp
Author: sunriseapps
Description: 🪄 ImageSorcery MCP – an MCP server that equips AI assistants with local image-processing tools (crop, resize, detect objects, OCR, drawing, etc.) built on OpenCV, Ultralytics and EasyOCR.
Stars: 84
Forks: 7
License: MIT License
Category: Open Source
Overview
Installation
1. Prerequisites:
• Python 3.9 or newer
• Git
2. Clone the repository
git clone https://github.com/sunriseapps/imagesorcery-mcp.git
cd imagesorcery-mcp3. Create and activate a virtual environment (recommended)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate4. Install dependencies
pip install -r requirements.txt5. Optional – install in editable mode (if you plan to develop)
pip install -e .6. Configuration
• Copy .env.example to .env and set environment variables as needed, e.g.
MCP_HOST=0.0.0.0
MCP_PORT=8080
MCP_AUTH_TOKEN=<your-token>7. Run the server
python -m imagesorcery_mcp # or whatever entry-point the package provides8. Verify
Open http://localhost:8080/health or http://localhost:8080/mcp/tools to make sure the service responds.License: MIT License
Updated 7/30/2025