get_hyper3d_status
Check Hyper3D Rodin integration status in Blender to determine feature availability. Returns a confirmed message for enabled features in the BlenderMCP server.
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:539-558 (handler)The main handler function for the 'get_hyper3d_status' MCP tool. It connects to Blender, sends the 'get_hyper3d_status' command, and returns the status message indicating if Hyper3D Rodin integration is enabled.@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:539-539 (registration)The @mcp.tool() decorator registers the get_hyper3d_status function as an MCP tool.@mcp.tool()
- src/blender_mcp/server.py:902-902 (helper)Instruction in the asset_creation_strategy prompt to use get_hyper3d_status() to check Hyper3D status before using its features.Use get_hyper3d_status() to verify its status