get_flow_by_id
Retrieve a specific workflow by its unique ID using the Prefect MCP Server, enabling efficient management and tracking of automated workflows.
Instructions
Get a flow by its ID.
Args:
flow_id: ID of the flow to retrieve.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_id": {
"title": "Flow Id",
"type": "string"
}
},
"required": [
"flow_id"
],
"title": "get_flow_by_idArguments",
"type": "object"
}