get_workspaces
Retrieve a list of accessible Prefect workspaces with optional filtering by name, pagination controls, and workspace details to help manage workflow automation environments.
Instructions
Get a list of accessible workspaces.
Args: limit: Maximum number of workspaces to return offset: Number of workspaces to skip name: Filter workspaces by name (note: filtering may not be supported by all Prefect versions)
Returns: A list of workspaces with their details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
name | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
}
},
"type": "object"
}