start
Launch the n8n automation server on a specified port with optional tunnel for webhook testing, replacing the standard n8n start command.
Instructions
Start n8n server - replaces "n8n start" command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | No | Port to run n8n on (default: 5678) | |
tunnel | No | Enable tunnel for webhook testing |
Input Schema (JSON Schema)
{
"properties": {
"port": {
"description": "Port to run n8n on (default: 5678)",
"type": "number"
},
"tunnel": {
"description": "Enable tunnel for webhook testing",
"type": "boolean"
}
},
"type": "object"
}