create-project
Initiate new projects in n8n by specifying client ID and project name via compact JSON input. Requires n8n Enterprise with project management enabled.
Instructions
Create a new project in n8n. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"clientId",
"name"
],
"type": "object"
}