Tripo MCP Server

by VAST-AI-Research
Verified

create_3d_model_from_text

Generate 3D models from text descriptions with Tripo MCP Server. Start the task, monitor progress using the task_id, and retrieve the final model upon completion.

Instructions

Create a 3D model from a text description using the Tripo API. IMPORTANT: This tool initiates a 3D model generation task but does NOT wait for completion. After calling this tool, you MUST repeatedly call the get_task_status tool with the returned task_id until the task status is SUCCESS or a terminal error state. Typical workflow: 1. Call create_3d_model_from_text to start the task 2. Get the task_id from the response 3. Call get_task_status with the task_id 4. If status is not SUCCESS, wait a moment and call get_task_status again 5. Repeat until status is SUCCESS or a terminal error state 6. When status is SUCCESS, use the pbr_model_url from the response Args: describe_the_look_of_object: A detailed description of the object to generate. face_limit: The maximum number of faces in the model. auto_size: Whether to automatically size the model. Returns: A dictionary containing the task ID and instructions for checking the status.

Input Schema

NameRequiredDescriptionDefault
describe_the_look_of_objectYes
face_limitNo

Input Schema (JSON Schema)

{ "properties": { "describe_the_look_of_object": { "title": "Describe The Look Of Object", "type": "string" }, "face_limit": { "default": 8000, "title": "Face Limit", "type": "integer" } }, "required": [ "describe_the_look_of_object" ], "title": "create_3d_model_from_textArguments", "type": "object" }
ID: zwkmy1dkon