cancel_flow_run
Stop an ongoing workflow execution by specifying its ID, enabling better control over Prefect workflow automation processes through the MCP server.
Instructions
Cancel a flow run.
Args:
flow_run_id: ID of the flow run to cancel.
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": "cancel_flow_runArguments",
"type": "object"
}