MCP Media Processing Server

compress-video

Compress video file

Input Schema

NameRequiredDescriptionDefault
inputPathYesAbsolute path to input video 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
qualityNoCompression quality (1-51, lower is better quality but larger file)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "inputPath": { "description": "Absolute path to input video 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" }, "quality": { "default": 23, "description": "Compression quality (1-51, lower is better quality but larger file)", "maximum": 51, "minimum": 1, "type": "number" } }, "required": [ "inputPath" ], "type": "object" }