image-tools-mcp

by kshern
Verified

get_image_size

Get the size of an image from URL

Input Schema

NameRequiredDescriptionDefault
optionsYesOptions for retrieving image size

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "options": { "additionalProperties": false, "description": "Options for retrieving image size", "properties": { "imageUrl": { "description": "Url of the image to retrieve", "type": "string" } }, "required": [ "imageUrl" ], "type": "object" } }, "required": [ "options" ], "type": "object" }