update-project
Modify a project's name in the n8n MCP Server by providing clientId, projectId, and new name as compact JSON. Requires n8n Enterprise license with project management features enabled.
Instructions
Update a project's name. 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 | ||
projectId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"name": {
"type": "string"
},
"projectId": {
"type": "string"
}
},
"required": [
"clientId",
"projectId",
"name"
],
"type": "object"
}