collections_list
ManagementList Collections
List collections in the current project.
Args:
- limit: results per page (default 20, max 100)
- page_token: pagination token from a previous response (nextPaginationToken)
- team_id, project_id: required for OAuth callers
Returns: { collections } array plus nextPaginationToken when more pages exist.
Example: "List my collections" -> (no required args beyond context)
Don't use when: you need tag management — use the asset/model tag tools.
read-onlyidempotentopen-world
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| limit | number | 20 | Results per page. |
| page_token | string | — | Pagination token. |
| team_id | string | — | Team ID. Required if user belongs to multiple teams. |
| project_id | string | — | Project ID to scope the operation to. |
| response_format | enum(json | markdown) | json | Output format: 'json' for structured data, 'markdown' for human-readable text. |
Example Request
JSON
{
"team_id": "team_abc123",
"project_id": "proj_xyz789"
}Example Response
JSON
{
"collections": [
{
"id": "col_dragons",
"name": "Dragon Concept Art"
}
]
}Common Use Cases
- List all collections in a project to audit naming conventions