background_removal
Remove image backgrounds automatically to isolate subjects. Input an image path and receive a cleaned image file, enhancing focus on the main content for editing or design purposes.
Instructions
Remove the background of an image automatically.
Args:
image_path: File path of the original image
ctx: MCP context
Returns:
Dict: Dictionary containing the file path of the image with the background removed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"image_path": {
"title": "Image Path",
"type": "string"
}
},
"required": [
"image_path"
],
"title": "background_removalArguments",
"type": "object"
}