get_hyper3d_status
Verify Hyper3D Rodin integration status in Blender. Returns a message confirming availability of Hyper3D Rodin features for enhanced 3D modeling workflows.
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-557 (handler)The primary handler function for the 'get_hyper3d_status' tool. Decorated with @mcp.tool() for registration. It connects to Blender, sends a 'get_hyper3d_status' command, processes the result to check if enabled, appends message, and returns the status string or error.@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()