home / mcp / image edit mcp server
Provides image processing, OCR, generation, and editing via MCP with a simple HTTP endpoint and local runtime.
Configuration
View docs{
"mcpServers": {
"factruesolin-image-edit-rmcp": {
"url": "https://image.cd.actrue.cn/kB7XMqsX31s90JPV/mcp",
"headers": {
"MCP_PORT": "3000",
"CACHE_DIR": "~/.cache/image-edit-rmcp",
"CACHE_URL": "http://localhost:3000",
"SECRET_KEY": "your_secret_key_here",
"MODELSCOPE_API_KEY": "your_api_key_here"
}
}
}
}Downloads an image from a URL, analyzes its content, and returns descriptive metadata including a description of the image.
Rotates an image by the specified direction (Right90, Left90, Flip180) and outputs the result as a PNG.
Crops an image using percentage-based coordinates and returns the cropped PNG image URL.
Retrieves basic information about an image, such as width, height, total pixels, MIME type, and file size.
Extracts textual content from an image using OCR.
Generates a new image from a text prompt with optional parameters for aspect ratio, resolution, and steps.
Edits an existing image based on a text prompt and outputs the edited image URL.