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:886-898 (handler)The handler function `get_hunyuan3d_status` executes the tool logic by communicating with the Blender connection. It is registered with the `@mcp.tool()` decorator.
@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