crop_image

Crops an existing image to a specific rectangle region. Creates a new image — the original is kept. Returns the new image URL. Use get_image_dimensions first if you need to know the source image size.

Available from 1 provider (1 remote)

Input Schema


            {
  "type": "object",
  "properties": {
    "brandId": {
      "description": "Brand ID (ObjectId) for authorization",
      "type": "string"
    },
    "imageUrl": {
      "description": "Source image URL (must be a BrandKarma asset URL)",
      "type": "string"
    },
    "x": {
      "description": "X offset of the crop rectangle (pixels from left)",
      "type": "integer"
    },
    "y": {
      "description": "Y offset of the crop rectangle (pixels from top)",
      "type": "integer"
    },
    "width": {
      "description": "Width of the crop rectangle in pixels",
      "type": "integer"
    },
    "height": {
      "description": "Height of the crop rectangle in pixels",
      "type": "integer"
    },
    "format": {
      "description": "Output format: png, jpg, webp (default: same as source)",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "brandId",
    "imageUrl",
    "x",
    "y",
    "width",
    "height"
  ]
}
          

Remote Providers (1)

These servers are accessible over the network — no local installation needed.

BrandKarma

Remote

https://app.getbrandkarma.com/api/mcp/

View product →