ticktick_create_calendar_event
Generate and schedule calendar events with specified title, start and end times, description, location, and reminder notifications using the TickTick MCP Server integration.
Instructions
Create calendar event
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Event description | |
| end_time | Yes | Event end time (ISO format) | |
| location | No | Event location | |
| reminder_minutes | No | Reminder time in minutes before event | |
| start_time | Yes | Event start time (ISO format) | |
| title | Yes | Event title |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Event description",
"type": "string"
},
"end_time": {
"description": "Event end time (ISO format)",
"type": "string"
},
"location": {
"description": "Event location",
"type": "string"
},
"reminder_minutes": {
"default": 15,
"description": "Reminder time in minutes before event",
"type": "number"
},
"start_time": {
"description": "Event start time (ISO format)",
"type": "string"
},
"title": {
"description": "Event title",
"type": "string"
}
},
"required": [
"title",
"start_time",
"end_time"
],
"type": "object"
}