37 lines
770 B
JSON
37 lines
770 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|
|
} |