Mask Editor
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., "@Mask EditorOpen the mask editor to help me mask out the sky in this photo."
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.
Mask Editor
An MCP App that lets you drop an image onto a canvas, paint a selection with a brush tool, and send the resulting mask to the server.
Setup
npm install
npm run buildRelated MCP server: universal-image-mcp
Running
npm run serve # serve pre-built dist/
npm start # build + serve
npm run dev # watch + serve (rebuilds on change)Server starts at http://localhost:3001/mcp (stateless streamable HTTP).
Set PORT env var to change the port.
Masks are saved to ./output/ as <name>_mask_<timestamp>.png.
Connecting an MCP Client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"mask-editor": {
"url": "http://localhost:3001/mcp"
}
}
}Restart Claude Desktop. The open-mask-editor tool will appear in the tools list.
Cursor
Open Settings → MCP and add a new server:
Type: HTTP
URL:
http://localhost:3001/mcp
VS Code (Continue extension)
In .continue/config.json:
{
"mcpServers": [
{
"name": "mask-editor",
"transport": {
"type": "http",
"url": "http://localhost:3001/mcp"
}
}
]
}Any MCP client (generic)
The server uses the Streamable HTTP transport (stateless). Point your client at:
http://localhost:3001/mcpNo API key or session setup required.
Testing with basic-host
git clone --branch "v$(npm view @modelcontextprotocol/ext-apps version)" --depth 1 \
https://github.com/modelcontextprotocol/ext-apps.git /tmp/mcp-ext-apps
cd /tmp/mcp-ext-apps/examples/basic-host && npm install
SERVERS='["http://localhost:3001/mcp"]' npm run startOpen http://localhost:8080, then call the open-mask-editor tool.
Usage
Drop an image onto the canvas (or click Upload Image)
Paint a selection using the brush — adjust size with the slider
Click Confirm Mask to generate a black/white mask and send it to the server
The saved file path is shown in the status bar
This server cannot be deployed
Maintenance
Related MCP Connectors
Edit images over MCP with object removal, background removal, and guided generative edits.
AI-powered image processing via GPU. Remove backgrounds and upscale images (2x/4x) directly from any MCP client. OAuth 2.1 authenticated, returns processed images inline with download links. Free credits on signup at maskr.io.
- RasterOAuthapp.raster
Browse, search, upload, tag, transfer, and delete images in your Raster libraries over MCP.
Image processing over MCP: compress and split images, generate images and QR codes.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceAn MCP server providing tools for image processing operations155 PyPI330PythonMIT
- AlicenseAqualityDmaintenanceMCP server for multi-provider AI image generation (AWS Bedrock, OpenAI, Google Gemini) enabling image generation, transformation, and editing through a unified interface.41MIT
- FlicenseNot gradedqualityDmaintenanceA full-featured image processing MCP server for AI assistants, exposing ~55 tools across 11 categories for editing, layers, conversion, AI segmentation/cleanup/generation, design analysis, and screenshot-to-code.-
- AlicenseAqualityCmaintenanceLocal image processing MCP server providing background removal, stock media search, resize, format conversion, and collage creation.5MIT