ticktick_create_project_folder
Organize tasks efficiently by creating a new project folder with a custom name and color using the TickTick MCP Server. Simplifies task management and improves productivity.
Instructions
Create a new project folder for organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Folder color (hex code) | #3498db |
name | Yes | Name of the folder |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"default": "#3498db",
"description": "Folder color (hex code)",
"type": "string"
},
"name": {
"description": "Name of the folder",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}