list_assets
Retrieve assets from a PlayCanvas project using filters for type, name, or tag. Paginated responses provide compact summaries; use full mode for complete asset JSON when needed.
Instructions
List project assets, returning compact summaries by default (id, name, type, folder, tags). Results are paginated: use limit (default 50) and offset; the response meta includes total, count, hasMore and nextCursor. Filter with type, name (case-insensitive contains) and/or tag. Use full=true only when you need the complete asset JSON (large). An empty result is a successful, empty list (not an error). When NOT to use: to search the public asset store (use store_search).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Filter by tag | |
| full | No | Return full asset JSON instead of the compact summary (much larger) | |
| name | No | Filter by name (case-insensitive contains) | |
| type | No | Filter by asset type | |
| limit | No | Max assets to return (default 50) | |
| offset | No | Number of assets to skip (use nextCursor from a previous page) |