MCP Media Processing Server

rotate-image

Rotate image by specified degrees

Input Schema

NameRequiredDescriptionDefault
degreesYesRotation angle in degrees
inputPathYesAbsolute path to input image file
outputFilenameNoOutput filename (only used if outputPath is not provided)
outputPathNoOptional absolute path for output file. If not provided, file will be saved in Downloads folder

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "degrees": { "description": "Rotation angle in degrees", "type": "number" }, "inputPath": { "description": "Absolute path to input image file", "type": "string" }, "outputFilename": { "description": "Output filename (only used if outputPath is not provided)", "type": "string" }, "outputPath": { "description": "Optional absolute path for output file. If not provided, file will be saved in Downloads folder", "type": "string" } }, "required": [ "inputPath", "degrees" ], "type": "object" }