list_environments
Retrieve all configured environments in a specified space to understand available deployment targets and infrastructure setup.
Instructions
List environments in a space
This tool lists all environments in a given space. The space name is required. Use this tool as early as possible to understand which environments are configured. Optionally filter by partial name match using partialName parameter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
partialName | No | ||
skip | No | ||
spaceName | Yes | ||
take | No |
Input Schema (JSON Schema)
{
"properties": {
"partialName": {
"type": "string"
},
"skip": {
"type": "number"
},
"spaceName": {
"type": "string"
},
"take": {
"type": "number"
}
},
"required": [
"spaceName"
],
"type": "object"
}