Tripo MCP Server

by VAST-AI-Research
Verified

get_task_status

Check the status of a 3D model generation task initiated by create_3d_model_from_text. Use the task_id to monitor progress, determine completion, or identify failures such as CANCELLED, FAILED, BANNED, or EXPIRED.

Instructions

Get the status of a 3D model generation task. IMPORTANT: This tool checks the status of a task started by create_3d_model_from_text. You may need to call this tool MULTIPLE TIMES until the task completes. Typical workflow: 1. Call this tool with the task_id from create_3d_model_from_text 2. Check the status in the response: - If status is SUCCESS, the task is complete and you can use the pbr_model_url - If status is FAILED, CANCELLED, BANNED, or EXPIRED, the task failed - If status is anything else, the task is still in progress 3. If the task is still in progress, wait a moment and call this tool again Args: task_id: The ID of the task to check (obtained from create_3d_model_from_text). Returns: A dictionary containing the task status and other information.

Input Schema

NameRequiredDescriptionDefault
task_idYes

Input Schema (JSON Schema)

{ "properties": { "task_id": { "title": "Task Id", "type": "string" } }, "required": [ "task_id" ], "title": "get_task_statusArguments", "type": "object" }
ID: zwkmy1dkon