list_entities
List and filter scene entities by name, component, or tag. Paginate through large scenes using limit and offset.
Instructions
List entities in the current scene, returning compact summaries by default (resource_id, name, hierarchy path, parent, enabled, tags, component names). Results are paginated: use limit (default 50) and offset to page through large scenes; the response meta includes total, count, hasMore and nextCursor. Filter with name (case-insensitive contains), component (only entities with that component) and/or tag. Use full=true only when you need the complete entity JSON (large; prefer summaries). An empty result is a successful, empty list (not an error). When NOT to use: when you already know an entity id and just need to act on it; for runtime/play-mode state (this returns edit-time data only).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Filter by tag | |
| full | No | Return full entity JSON instead of the compact summary (much larger) | |
| name | No | Filter by name (case-insensitive contains) | |
| limit | No | Max entities to return (default 50) | |
| offset | No | Number of entities to skip (use nextCursor from a previous page) | |
| component | No | Filter to entities that have this component |