Tripo MCP Server

by VAST-AI-Research
Verified

create_object

Generate and place 3D objects in a Blender scene using specified type, name, location, rotation, and scale parameters. Ideal for integrating 3D assets through the Tripo MCP Server.

Instructions

Create a new object in the Blender scene. Parameters: - type: Object type (CUBE, SPHERE, CYLINDER, PLANE, CONE, TORUS, EMPTY, CAMERA, LIGHT) - name: Optional name for the object - location: Optional [x, y, z] location coordinates - rotation: Optional [x, y, z] rotation in radians - scale: Optional [x, y, z] scale factors

Input Schema

NameRequiredDescriptionDefault
locationNo
nameNo
rotationNo
scaleNo
typeNoCUBE

Input Schema (JSON Schema)

{ "properties": { "location": { "default": null, "items": { "type": "number" }, "title": "Location", "type": "array" }, "name": { "default": null, "title": "Name", "type": "string" }, "rotation": { "default": null, "items": { "type": "number" }, "title": "Rotation", "type": "array" }, "scale": { "default": null, "items": { "type": "number" }, "title": "Scale", "type": "array" }, "type": { "default": "CUBE", "title": "Type", "type": "string" } }, "title": "create_objectArguments", "type": "object" }
ID: zwkmy1dkon