add_node
Add a functional n8n node to workflow files with specified position, enabling workflow development and automation.
Instructions
Add a REAL n8n node to workflow (no mock/placeholder nodes allowed)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
node | Yes | The node to add | |
path | Yes | Path to the workflow file | |
position | No | Position for the new node |
Input Schema (JSON Schema)
{
"properties": {
"node": {
"description": "The node to add",
"type": "object"
},
"path": {
"description": "Path to the workflow file",
"type": "string"
},
"position": {
"description": "Position for the new node",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
}
},
"type": "object"
}
},
"required": [
"path",
"node"
],
"type": "object"
}