get_pomodoro_stats
Retrieve productivity statistics from your Pomodoro sessions to analyze work patterns and improve time management across daily, weekly, monthly, or all-time periods.
Instructions
Get statistics about pomodoro sessions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period for stats |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"description": "Time period for stats",
"enum": [
"today",
"week",
"month",
"all"
],
"type": "string"
}
},
"type": "object"
}