ticktick_get_collaboration_stats
Retrieve team collaboration metrics for a specific project within a defined time period using the TickTick MCP Server, enabling efficient analysis of productivity patterns.
Instructions
Team productivity metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ID of the project | |
time_period | No | Time period for stats | month |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project",
"type": "string"
},
"time_period": {
"default": "month",
"description": "Time period for stats",
"enum": [
"week",
"month",
"quarter",
"year"
],
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}