Eyevinn Open Source Cloud MCP Server

Official

osc_create_vod

Create a VOD package using a VOD pipeline in Eyevinn Open Source Cloud

Input Schema

NameRequiredDescriptionDefault
pipelineYesName of the pipeline
sourceYesSource video URL

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "pipeline": { "description": "Name of the pipeline", "pattern": "^[a-z0-9]+$", "type": "string" }, "source": { "description": "Source video URL", "type": "string" } }, "required": [ "pipeline", "source" ], "type": "object" }