3D-MCP

by team-plask
Verified

createDrivers

Create multiple Drivers

Input Schema

NameRequiredDescriptionDefault
itemsYesArray of Drivers to create

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "items": { "description": "Array of Drivers to create", "items": { "additionalProperties": false, "properties": { "expression": { "description": "Mathematical expression or code", "type": "string" }, "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": [ "name", "targetNodeId", "targetPath", "expression" ], "type": "object" }, "type": "array" } }, "required": [ "items" ], "type": "object" }

You must be authenticated.

Other Tools