ticktick_bulk_calendar_import
Import external calendar data in iCal format into TickTick, merge duplicate events, and optionally create a new calendar for imported events using the TickTick MCP Server.
Instructions
Import external calendar data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendar_data | Yes | Calendar data in iCal format | |
create_new_calendar | No | Create new calendar for imported events | |
import_source | No | Source of the calendar data | |
merge_duplicates | No | Merge duplicate events |
Input Schema (JSON Schema)
{
"properties": {
"calendar_data": {
"description": "Calendar data in iCal format",
"type": "string"
},
"create_new_calendar": {
"default": false,
"description": "Create new calendar for imported events",
"type": "boolean"
},
"import_source": {
"description": "Source of the calendar data",
"type": "string"
},
"merge_duplicates": {
"default": true,
"description": "Merge duplicate events",
"type": "boolean"
}
},
"required": [
"calendar_data"
],
"type": "object"
}