get_flow
Retrieve a specific workflow by its ID to access the sequence of steps, descriptions, and input schemas needed to execute the process.
Instructions
"Use this tool to retrieve a specific workflow by its ID.
Workflow is sequence of steps that are executed in order to get some result. Flow comes with description, steps and input schema of all methods to call.
You can call this tool once you have a flowId which usually you can get from: user directly OR using get-tools method."
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flowId | Yes | The ID of the workflow to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"flowId": {
"description": "The ID of the workflow to retrieve.",
"type": "string"
}
},
"required": [
"flowId"
],
"type": "object"
}