ticktick_move_project_to_folder
Move a TickTick project to a specified folder using project and folder IDs for organized task management within the TickTick MCP Server.
Instructions
Move a project to a specific folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | Yes | ID of the destination folder | |
project_id | Yes | ID of the project to move |
Input Schema (JSON Schema)
{
"properties": {
"folder_id": {
"description": "ID of the destination folder",
"type": "string"
},
"project_id": {
"description": "ID of the project to move",
"type": "string"
}
},
"required": [
"project_id",
"folder_id"
],
"type": "object"
}