createKeyframes
Generate multiple keyframes for 3D animation by specifying time, value, and channel ID, with options for tangent handles and metadata, using 3D-MCP’s standardized interface.
Instructions
Create multiple Keyframes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Keyframes to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Keyframes to create",
"items": {
"additionalProperties": false,
"properties": {
"channelId": {
"description": "ID of the channel this keyframe belongs to",
"type": "string"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"tangentIn": {
"description": "Incoming tangent handle (for bezier/hermite)",
"items": {
"type": "number"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"tangentOut": {
"$ref": "#/properties/items/items/properties/tangentIn",
"description": "Outgoing tangent handle (for bezier/hermite)"
},
"time": {
"description": "Time position in seconds",
"type": "number"
},
"value": {
"description": "Value at this keyframe",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"name",
"time",
"value",
"channelId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}