collections_list

Management

List 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

NameTypeRequiredDescription
limitnumber20Results per page.
page_tokenstringPagination token.
team_idstringTeam ID. Required if user belongs to multiple teams.
project_idstringProject ID to scope the operation to.
response_formatenum(json | markdown)jsonOutput 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