get_deployment_by_id
Retrieve a specific deployment by its unique ID from the Prefect MCP Server, enabling precise access to workflow automation details for streamlined management.
Instructions
Get a deployment by its ID.
Args:
deployment_id: ID of the deployment to retrieve.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_id": {
"title": "Deployment Id",
"type": "string"
}
},
"required": [
"deployment_id"
],
"title": "get_deployment_by_idArguments",
"type": "object"
}