get_flow_run_by_id
Retrieve details of a specific workflow run by its ID using the Prefect MCP Server Interface. Ideal for monitoring and managing automated task execution efficiently.
Instructions
Get a flow run by its ID.
Args:
flow_run_id: ID of the flow run to retrieve.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_run_id": {
"title": "Flow Run Id",
"type": "string"
}
},
"required": [
"flow_run_id"
],
"title": "get_flow_run_by_idArguments",
"type": "object"
}