get_scene_info
Retrieve details about the active Cinema 4D scene to understand its structure and contents for AI-assisted 3D modeling.
Instructions
Get information about the current Cinema 4D scene.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/cinema4d_mcp/server.py:420-432 (handler)The get_scene_info tool handler implemented in server.py using FastMCP.
@mcp.tool() async def get_scene_info(ctx: Context) -> str: """Get information about the current Cinema 4D scene.""" async with c4d_connection_context() as connection: if not connection.connected: return "❌ Not connected to Cinema 4D" response = send_to_c4d(connection, {"command": "get_scene_info"}) if "error" in response: return f"❌ Error: {response['error']}" # Format scene info nicely