List Workspace Nodes
list_workspace_nodesLists nodes in a Coalesce workspace with pagination; returns one page with a cursor to fetch the next.
Instructions
List nodes in a Coalesce workspace (use list_workspaces to find workspace IDs). Returns ONE page (default 100 nodes, or 25 when detail=true).
IMPORTANT: if the response has hasMore: true, this is NOT the whole workspace — treating one page as complete will undercount it. Either page through the rest (call again with startingFrom set to the returned next, same orderBy), or better, switch tools: use analyze_workspace_patterns for a complete whole-workspace profile in one call, or search_workspace_content / get_workspace_node by ID to find specific nodes. Only page the full workspace when the user explicitly wants a full inventory.
Args:
workspaceID (string, required): The workspace ID
detail (boolean, optional): Include full node details
limit, startingFrom, orderBy, orderByDirection: Pagination (limit defaults to 100, or 25 when detail=true)
Returns: { data: Node[], next?: string, hasMore?: boolean, retrieved?: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (max 500) | |
| detail | No | Include full node details in response | |
| orderBy | No | Field to sort by (required with startingFrom) | |
| workspaceID | Yes | The workspace ID | |
| startingFrom | No | Cursor from previous response's next field | |
| orderByDirection | No | Sort direction |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| next | No | ||
| total | No |