3D-MCP

by team-plask
Verified

editCurveControlPoints

Edit control points of curves

Input Schema

NameRequiredDescriptionDefault
itemsYesCurve control point edits

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "items": { "description": "Curve control point edits", "items": { "additionalProperties": false, "properties": { "controlPointIndex": { "description": "Index of control point to edit", "minimum": 0, "type": "integer" }, "curveId": { "description": "Curve identifier", "type": "string" }, "position": { "description": "New position [x, y, z]", "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" }, "weight": { "description": "New weight value", "exclusiveMinimum": 0, "type": "number" } }, "required": [ "curveId", "controlPointIndex" ], "type": "object" }, "type": "array" } }, "required": [ "items" ], "type": "object" }

You must be authenticated.

Other Tools