get_hunyuan3d_status
Check if Hunyuan3D integration is enabled in Blender to determine availability of its 3D modeling features for AI-assisted workflows.
Instructions
Check if Hunyuan3D integration is enabled in Blender. Returns a message indicating whether Hunyuan3D features are available.
Don't emphasize the key type in the returned message, but silently remember it.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/blender_mcp/server.py:905-920 (handler)The handler function for the 'get_hunyuan3d_status' tool. It is registered via the @mcp.tool() decorator. The function connects to Blender, sends the 'get_hunyuan3d_status' command, and returns the status message or an error.@mcp.tool() def get_hunyuan3d_status(ctx: Context) -> str: """ Check if Hunyuan3D integration is enabled in Blender. Returns a message indicating whether Hunyuan3D features are available. Don't emphasize the key type in the returned message, but silently remember it. """ try: blender = get_blender_connection() result = blender.send_command("get_hunyuan3d_status") message = result.get("message", "") return message except Exception as e: logger.error(f"Error checking Hunyuan3D status: {str(e)}") return f"Error checking Hunyuan3D status: {str(e)}"
- src/blender_mcp/server.py:1070-1071 (helper)Reference to the tool in the asset_creation_strategy prompt, instructing users to verify Hunyuan3D status before using related features.Use get_hunyuan3d_status() to verify its status If Hunyuan3D is enabled: