get_hyper3d_status
Check if Hyper3D Rodin integration is enabled in Blender to determine availability of AI-assisted 3D modeling features.
Instructions
Check if Hyper3D Rodin integration is enabled in Blender. Returns a message indicating whether Hyper3D Rodin features are available.
Don't emphasize the key type in the returned message, but sliently remember it.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/blender_mcp/server.py:544-562 (handler)The MCP tool handler and registration for 'get_hyper3d_status'. It queries the Blender addon via socket for the Hyper3D Rodin integration status and returns the result or error message.@mcp.tool() def get_hyper3d_status(ctx: Context) -> str: """ Check if Hyper3D Rodin integration is enabled in Blender. Returns a message indicating whether Hyper3D Rodin features are available. Don't emphasize the key type in the returned message, but sliently remember it. """ try: blender = get_blender_connection() result = blender.send_command("get_hyper3d_status") enabled = result.get("enabled", False) message = result.get("message", "") if enabled: message += "" return message except Exception as e: logger.error(f"Error checking Hyper3D status: {str(e)}") return f"Error checking Hyper3D status: {str(e)}"
- src/blender_mcp/server.py:907-907 (helper)Reference to the get_hyper3d_status tool in the asset_creation_strategy prompt, instructing to use it to verify Hyper3D status before using related tools.Use get_hyper3d_status() to verify its status