ticktick_get_schedule_conflicts
Identify overlapping events or tasks within a specified date range to detect scheduling conflicts on the TickTick MCP Server. Customize conflict detection with duration thresholds and optional task inclusion.
Instructions
Detect scheduling conflicts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conflict_threshold_minutes | No | Minimum overlap time to consider conflict | |
end_date | No | End date to check (YYYY-MM-DD) | |
include_tasks | No | Include task conflicts | |
start_date | No | Start date to check (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"conflict_threshold_minutes": {
"default": 15,
"description": "Minimum overlap time to consider conflict",
"type": "number"
},
"end_date": {
"description": "End date to check (YYYY-MM-DD)",
"type": "string"
},
"include_tasks": {
"default": true,
"description": "Include task conflicts",
"type": "boolean"
},
"start_date": {
"description": "Start date to check (YYYY-MM-DD)",
"type": "string"
}
},
"type": "object"
}