get_workflow_details
Retrieve detailed information about specific workflows by providing the workflow name and optional path, enabling efficient workflow management and analysis in the n8n-workflow-builder-mcp server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workflow_name | Yes | The Name of the workflow to get details for | |
workflow_path | No | Optional direct path to the workflow file (absolute or relative to current working directory). If not provided, uses standard workflow_data directory approach. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"workflow_name": {
"description": "The Name of the workflow to get details for",
"type": "string"
},
"workflow_path": {
"description": "Optional direct path to the workflow file (absolute or relative to current working directory). If not provided, uses standard workflow_data directory approach.",
"type": "string"
}
},
"required": [
"workflow_name"
],
"type": "object"
}