resize_image

Resizes an existing image to fit within the given max dimensions, preserving aspect ratio. Creates a new image — the original is kept. Returns the new image URL.

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"
    },
    "maxWidth": {
      "description": "Maximum width in pixels",
      "type": "integer"
    },
    "maxHeight": {
      "description": "Maximum height in pixels",
      "type": "integer"
    },
    "format": {
      "description": "Output format: png, jpg, webp (default: same as source)",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "brandId",
    "imageUrl",
    "maxWidth",
    "maxHeight"
  ]
}
          

Remote Providers (1)

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

BrandKarma

Remote

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

View product →