List Environment Nodes
list_environment_nodesList nodes in a Coalesce environment, paginating through results with cursor-based navigation. Optionally include full node details for each returned node.
Instructions
List nodes deployed in a Coalesce environment. Returns ONE page (default 100 nodes, or 25 when detail=true). If the response has hasMore: true, you have NOT seen all nodes — you must page (call again with startingFrom set to the returned next, same orderBy) before drawing any conclusion about the environment, or you will undercount it. When you know the node, prefer get_environment_node by ID rather than paging.
Args:
environmentID (string, required): The environment 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) | |
| startingFrom | No | Cursor from previous response's next field | |
| environmentID | Yes | The environment ID | |
| orderByDirection | No | Sort direction |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| next | No | ||
| total | No |