ticktick_duplicate_project
Duplicate an existing project and optionally include its tasks by specifying the project ID and a new name for the copy. Simplifies project replication within the TickTick MCP Server.
Instructions
Create a copy of an existing project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_tasks | No | Include tasks in the duplicate | |
new_name | Yes | Name for the duplicated project | |
project_id | Yes | ID of the project to duplicate |
Input Schema (JSON Schema)
{
"properties": {
"include_tasks": {
"default": true,
"description": "Include tasks in the duplicate",
"type": "boolean"
},
"new_name": {
"description": "Name for the duplicated project",
"type": "string"
},
"project_id": {
"description": "ID of the project to duplicate",
"type": "string"
}
},
"required": [
"project_id",
"new_name"
],
"type": "object"
}