list_collections
List every collection the agent can see.
Last updated
list_collections
List all collections (workspaces) the agent can see. Call this first to discover collection IDs; every other write and query tool needs one.
Arguments
None.
Returns
A JSON array of collection summaries. Each item contains:
| Field | Type | Description |
|---|---|---|
id | string | Stable collection ID. Pass to list_views, query_pages, create_page. |
name | string | Display name. |
description | string | Optional long-form description. |
icon | string | Icon identifier (emoji or token). |
color | string | Theme colour hex. |
defaultView | string | ID of the view shown by default when humans open it. |
Example
{
"tool": "list_collections",
"arguments": {}
}
Sample response:
[
{
"id": "col_a1b2c3",
"name": "Meeting Notes",
"description": "All team meetings",
"icon": "📝",
"color": "#5b8def",
"defaultView": "view_xyz"
}
]