ticktick_create_tag
Create and customize tags in TickTick by specifying a name and optional color (hex code). Enhance task organization and productivity through efficient tagging within the TickTick MCP Server.
Instructions
Create a new tag in TickTick
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Color of the tag (hex code) | #3498db |
name | Yes | Name of the tag |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"default": "#3498db",
"description": "Color of the tag (hex code)",
"type": "string"
},
"name": {
"description": "Name of the tag",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}