list_entities
Retrieve a comprehensive list of all entities within the PlayCanvas Editor to manage and organize 3D web application elements efficiently.
Instructions
List all entities
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/entity.ts:75-82 (registration)Registration of the 'list_entities' MCP tool. The handler function calls wss.call('entities:list') to retrieve the list of all entities.mcp.tool( 'list_entities', 'List all entities', {}, () => { return wss.call('entities:list'); } );