create_flow_run_from_deployment
Initiate a flow run for a specific deployment in Prefect MCP Server by providing deployment ID, optional parameters, name, and timeout settings.
Instructions
Create a new flow run for the specified deployment.
Args:
deployment_id: ID of the deployment or name in format 'flow_name/deployment_name'.
parameters: Dictionary with parameters for the flow run (optional).
name: Optional name for the flow run.
timeout: Timeout in seconds, 0 means no waiting for completion (default 0).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_id | Yes | ||
name | No | ||
parameters | No | ||
timeout | No |
Input Schema (JSON Schema)
{
"properties": {
"deployment_id": {
"title": "Deployment Id",
"type": "string"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"parameters": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Parameters"
},
"timeout": {
"default": 0,
"title": "Timeout",
"type": "integer"
}
},
"required": [
"deployment_id"
],
"title": "create_flow_run_from_deploymentArguments",
"type": "object"
}