Skip to main content
Edit images using natural-language prompts through the Pixelcut MCP server. All results are saved to your workspace.

Background removal

Use edit_image with action: "remove_background":
The output is a transparent PNG with the subject cleanly isolated. Supports batch processing — pass an array of images to process them in parallel.

Upscale

Use edit_image with action: "upscale" and optional scale parameter ("2" or "4"):

Expand / outpaint

Use edit_image with action: "expand". You can specify pixel amounts per direction (left, right, top, bottom) or use aspect_ratio (e.g., "16:9") to auto-calculate the padding:

Chaining operations

Run multiple editing steps in sequence by passing the output asset ID of one step into the next.
The agent will call edit_image (action: remove_background), then call edit_image again (action: upscale, scale: "4") with the resulting asset ID. For repeatable multi-step workflows, consider creating a pipeline instead.

Batch editing

The edit_image tool accepts an array of images for batch processing:
The agent calls assets to list the collection contents, then edit_image with an array of asset IDs.

Editing tools summary