blender_get_scene_info
Query Blender scene hierarchy, objects, materials, and world settings to understand current scene state and verify setup.
Instructions
Query current Blender scene hierarchy, objects list, materials, and world settings.
Returns complete scene metadata including all objects, their types, transforms, materials, and collections.
Args:
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: For JSON: { objects: [...], materials: [...], collections: [...], world: {...} } For markdown: Formatted hierarchy with object details
Use when: Need to understand current scene state, find object names, or verify scene setup Don't use when: Modifying scene (use create/modify tools instead)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | Output format: markdown or json | markdown |