sync: auto-sync from GURU-5070 at 2026-06-14 20:04:14

Author: Mike Swanson
Machine: GURU-5070
Timestamp: 2026-06-14 20:04:14
This commit is contained in:
2026-06-14 20:05:02 -07:00
parent 30933bd35d
commit c5d4d3527c
119 changed files with 5204 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
{
"name": "ticktick_create_project",
"description": "Create a new TickTick project.",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Project name (required)"
},
"color": {
"type": "string",
"description": "Hex color code (e.g. '#ff6347')"
},
"viewMode": {
"type": "string",
"enum": [
"list",
"kanban",
"timeline"
],
"description": "View mode for the project"
},
"kind": {
"type": "string",
"enum": [
"TASK",
"NOTE"
],
"description": "Project kind (default TASK)"
}
},
"required": [
"name"
]
}
}