create_3d_model_from_image
Convert 2D images into 3D models using the Tripo MCP Server. Initiate the task with an image file, monitor progress via task status, and retrieve the final PBR model URL for use.
Instructions
Create a 3D model from an image 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_image 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:
image: The local path or url to the image file.
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
Name | Required | Description | Default |
---|---|---|---|
face_limit | No | ||
image | Yes |
Input Schema (JSON Schema)
{
"properties": {
"face_limit": {
"default": -1,
"title": "Face Limit",
"type": "integer"
},
"image": {
"title": "Image",
"type": "string"
}
},
"required": [
"image"
],
"title": "create_3d_model_from_imageArguments",
"type": "object"
}