ticktick_get_habit_calendar
Generate a calendar view of habit completions by providing a habit ID, year, and optional month. Track progress and visualize consistency using TickTick MCP Server's habit tracking API.
Instructions
Get calendar view of habit completions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
habit_id | Yes | ID of the habit | |
month | No | Month for calendar view (1-12), optional for full year | |
year | No | Year for calendar view |
Input Schema (JSON Schema)
{
"properties": {
"habit_id": {
"description": "ID of the habit",
"type": "string"
},
"month": {
"description": "Month for calendar view (1-12), optional for full year",
"type": "number"
},
"year": {
"default": 2025,
"description": "Year for calendar view",
"type": "number"
}
},
"required": [
"habit_id"
],
"type": "object"
}