ticktick_bulk_tag_operations
Enable bulk tag management for TickTick tasks by adding, removing, or replacing tags across multiple task IDs simultaneously, streamlining organization and productivity.
Instructions
Perform bulk operations on tags
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | Operation: add, remove, replace | |
| replace_with | No | New tags for replace operation | |
| tag_names | Yes | Array of tag names for the operation | |
| task_ids | Yes | Array of task IDs to operate on |
Input Schema (JSON Schema)
{
"properties": {
"operation": {
"description": "Operation: add, remove, replace",
"enum": [
"add",
"remove",
"replace"
],
"type": "string"
},
"replace_with": {
"description": "New tags for replace operation",
"items": {
"type": "string"
},
"type": "array"
},
"tag_names": {
"description": "Array of tag names for the operation",
"items": {
"type": "string"
},
"type": "array"
},
"task_ids": {
"description": "Array of task IDs to operate on",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"operation",
"task_ids",
"tag_names"
],
"type": "object"
}