create-tag
Generate new tags within your instance using client ID and tag name to organize and categorize data efficiently in the MCP-N8N server.
Instructions
Create a new tag in your instance.
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"
}