create_object
Add 3D objects like cubes, spheres, or lights to a Blender scene with precise control over location, rotation, and scale through 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
Name | Required | Description | Default |
---|---|---|---|
location | No | ||
name | No | ||
rotation | No | ||
scale | No | ||
type | No | CUBE |
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"
}