update-tag
Modify a tag's name in the MCP-N8N server by specifying the client ID, tag ID, and new name to ensure accurate labeling and organization.
Instructions
Update a tag's name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
id | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"clientId",
"id",
"name"
],
"type": "object"
}