Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ttiimmaacc/cinema4d-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server