Tripo MCP Server

by VAST-AI-Research
Verified

modify_object

Update object properties in Blender, including location, rotation, scale, and visibility, by specifying the object name and desired parameters.

Instructions

Modify an existing object in the Blender scene. Parameters: - name: Name of the object to modify - location: Optional [x, y, z] location coordinates - rotation: Optional [x, y, z] rotation in radians - scale: Optional [x, y, z] scale factors - visible: Optional boolean to set visibility

Input Schema

NameRequiredDescriptionDefault
locationNo
nameYes
rotationNo
scaleNo
visibleNo

Input Schema (JSON Schema)

{ "properties": { "location": { "default": null, "items": { "type": "number" }, "title": "Location", "type": "array" }, "name": { "title": "Name", "type": "string" }, "rotation": { "default": null, "items": { "type": "number" }, "title": "Rotation", "type": "array" }, "scale": { "default": null, "items": { "type": "number" }, "title": "Scale", "type": "array" }, "visible": { "default": null, "title": "Visible", "type": "boolean" } }, "required": [ "name" ], "title": "modify_objectArguments", "type": "object" }
ID: zwkmy1dkon