ticktick_get_habit_history
Retrieve habit completion history by specifying a habit ID and optional days to look back. Integrates with TickTick MCP Server for habit tracking and productivity management.
Instructions
Get habit completion history
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days_back | No | Number of days to look back | |
habit_id | Yes | ID of the habit |
Input Schema (JSON Schema)
{
"properties": {
"days_back": {
"default": 30,
"description": "Number of days to look back",
"type": "number"
},
"habit_id": {
"description": "ID of the habit",
"type": "string"
}
},
"required": [
"habit_id"
],
"type": "object"
}