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,21 @@
{
"name": "ticktick_complete_task",
"description": "Mark a TickTick task as completed.",
"inputSchema": {
"type": "object",
"properties": {
"task_id": {
"type": "string",
"description": "The task ID to complete"
},
"project_id": {
"type": "string",
"description": "The project ID the task belongs to"
}
},
"required": [
"task_id",
"project_id"
]
}
}

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"
]
}
}

View File

@@ -0,0 +1,46 @@
{
"name": "ticktick_create_task",
"description": "Create a new task in a TickTick project.",
"inputSchema": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Task title (required)"
},
"project_id": {
"type": "string",
"description": "Project ID to create the task in (required)"
},
"content": {
"type": "string",
"description": "Task description / notes"
},
"priority": {
"type": "integer",
"enum": [
0,
1,
3,
5
],
"description": "Priority: 0=none, 1=low, 3=medium, 5=high"
},
"due_date": {
"type": "string",
"description": "Due date in ISO 8601 format (e.g. 2026-04-01T12:00:00+0000)"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of tag names to attach"
}
},
"required": [
"title",
"project_id"
]
}
}

View File

@@ -0,0 +1,16 @@
{
"name": "ticktick_delete_project",
"description": "Delete a TickTick project by ID. This is irreversible.",
"inputSchema": {
"type": "object",
"properties": {
"project_id": {
"type": "string",
"description": "The project ID to delete"
}
},
"required": [
"project_id"
]
}
}

View File

@@ -0,0 +1,21 @@
{
"name": "ticktick_delete_task",
"description": "Delete a TickTick task. This is irreversible.",
"inputSchema": {
"type": "object",
"properties": {
"task_id": {
"type": "string",
"description": "The task ID to delete"
},
"project_id": {
"type": "string",
"description": "The project ID the task belongs to"
}
},
"required": [
"task_id",
"project_id"
]
}
}

View File

@@ -0,0 +1,16 @@
{
"name": "ticktick_get_project",
"description": "Get a TickTick project and all its tasks by project ID.",
"inputSchema": {
"type": "object",
"properties": {
"project_id": {
"type": "string",
"description": "The project ID to retrieve"
}
},
"required": [
"project_id"
]
}
}

View File

@@ -0,0 +1,8 @@
{
"name": "ticktick_list_projects",
"description": "List all TickTick projects. Returns an array of projects with id, name, color, viewMode, and kind.",
"inputSchema": {
"type": "object",
"properties": {}
}
}

View File

@@ -0,0 +1,33 @@
{
"name": "ticktick_update_project",
"description": "Update an existing TickTick project's name, color, or viewMode.",
"inputSchema": {
"type": "object",
"properties": {
"project_id": {
"type": "string",
"description": "The project ID to update"
},
"name": {
"type": "string",
"description": "New project name"
},
"color": {
"type": "string",
"description": "New hex color code"
},
"viewMode": {
"type": "string",
"enum": [
"list",
"kanban",
"timeline"
],
"description": "New view mode"
}
},
"required": [
"project_id"
]
}
}

View File

@@ -0,0 +1,50 @@
{
"name": "ticktick_update_task",
"description": "Update an existing task's title, content, priority, due date, or tags.",
"inputSchema": {
"type": "object",
"properties": {
"task_id": {
"type": "string",
"description": "The task ID to update"
},
"project_id": {
"type": "string",
"description": "The project ID the task belongs to"
},
"title": {
"type": "string",
"description": "New task title"
},
"content": {
"type": "string",
"description": "New task description / notes"
},
"priority": {
"type": "integer",
"enum": [
0,
1,
3,
5
],
"description": "New priority: 0=none, 1=low, 3=medium, 5=high"
},
"due_date": {
"type": "string",
"description": "New due date in ISO 8601 format"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Replacement list of tag names"
}
},
"required": [
"task_id",
"project_id"
]
}
}