List Environments
list_environmentsList all Coalesce environments with their IDs, names, and configuration. Use results to discover environment IDs needed for runs, nodes, or jobs.
Instructions
List all available Coalesce environments with optional pagination.
Returns environment IDs, names, and configuration. Use this to discover environment IDs needed by run, node, and job tools.
Args:
limit (number, optional): Max results per page
startingFrom (string, optional): Pagination cursor from previous response
orderBy (string, optional): Sort field (requires startingFrom)
orderByDirection ('asc'|'desc', optional): Sort direction
detail (boolean, optional): Include expanded environment configuration
Returns: { data: Environment[], next?: string, total?: number }
Use get_environment for a single environment by ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (max 500) | |
| detail | No | When true, returns expanded environment info | |
| orderBy | No | Field to sort by (required with startingFrom) | |
| 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 |