search_deployments_by_status
Filter and retrieve deployments on the Prefect MCP Server based on their schedule status, with options to set a limit for the number of results returned.
Instructions
Search for deployments by schedule status.
Args:
is_schedule_active: Filter deployments by whether their schedule is active.
limit: Maximum number of deployments to return (default 20).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_schedule_active | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"is_schedule_active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Schedule Active"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
}
},
"title": "search_deployments_by_statusArguments",
"type": "object"
}