deploy
Deploy n8n workflows to an instance, handling import commands with options for specific files, changed workflows, activation, and separate imports.
Instructions
Deploy workflows to n8n instance - handles all n8n import commands internally
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activate | No | Activate workflows after importing | |
all | No | Deploy ALL workflows, not just changed ones | |
path | No | Optional: Deploy specific workflow file. If not provided, deploys all changed workflows | |
separate | No | Import as separate workflows (not merged) |
Input Schema (JSON Schema)
{
"properties": {
"activate": {
"description": "Activate workflows after importing",
"type": "boolean"
},
"all": {
"description": "Deploy ALL workflows, not just changed ones",
"type": "boolean"
},
"path": {
"description": "Optional: Deploy specific workflow file. If not provided, deploys all changed workflows",
"type": "string"
},
"separate": {
"description": "Import as separate workflows (not merged)",
"type": "boolean"
}
},
"type": "object"
}