updateDrivers
Update multiple Drivers in a single operation using the tool within the 3D-MCP server. Streamline driver management by modifying expressions, IDs, and metadata efficiently.
Instructions
Update multiple Drivers in a single operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Drivers to update with their IDs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Drivers to update with their IDs",
"items": {
"additionalProperties": false,
"properties": {
"expression": {
"description": "Mathematical expression or code",
"type": "string"
},
"ids": {
"description": "Driver identifiers to update",
"items": {
"type": "string"
},
"type": "array"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"targetNodeId": {
"description": "Node to drive",
"type": "string"
},
"targetPath": {
"description": "Property path on target to drive",
"type": "string"
},
"variables": {
"default": [],
"description": "Input variables for the expression",
"items": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Variable name in expression",
"type": "string"
},
"sourceNodeId": {
"description": "Node ID to read from",
"type": "string"
},
"sourcePath": {
"description": "Property path to read from",
"type": "string"
},
"transform": {
"description": "Transform to apply to input",
"type": "string"
}
},
"required": [
"name",
"sourceNodeId",
"sourcePath"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}