create-project
Initiate a new project in n8n by providing client ID and name as compact JSON. Requires n8n Enterprise license with project management features enabled. Ideal for structured workflow creation.
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"
}