3D-MCP

by team-plask
Verified

updateClips

Update multiple Clips in a single operation

Input Schema

NameRequiredDescriptionDefault
itemsYesArray of Clips to update with their IDs

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "items": { "description": "Array of Clips to update with their IDs", "items": { "additionalProperties": false, "properties": { "duration": { "description": "Duration in seconds", "minimum": 0, "type": "number" }, "enabled": { "default": true, "description": "Whether this clip is enabled", "type": "boolean" }, "frameRate": { "default": 24, "description": "Frame rate in frames per second", "exclusiveMinimum": 0, "type": "number" }, "ids": { "description": "Clip identifiers to update", "items": { "type": "string" }, "type": "array" }, "loop": { "default": false, "description": "Whether the clip should loop", "type": "boolean" }, "metadata": { "additionalProperties": {}, "description": "Additional tool-specific metadata", "type": "object" }, "name": { "description": "Display name", "type": "string" }, "speed": { "default": 1, "description": "Playback speed multiplier", "type": "number" }, "startTime": { "default": 0, "description": "Start time in seconds", "type": "number" } }, "required": [ "ids" ], "type": "object" }, "type": "array" } }, "required": [ "items" ], "type": "object" }

You must be authenticated.

Other Tools