update_settings
Modify Pomodoro timer settings including work duration, short and long break intervals, and pomodoros before long breaks to customize your productivity workflow.
Instructions
Update pomodoro timer settings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workDuration | No | Work duration in minutes | |
| shortBreakDuration | No | Short break duration in minutes | |
| longBreakDuration | No | Long break duration in minutes | |
| pomodorosBeforeLongBreak | No | Number of pomodoros before long break |
Input Schema (JSON Schema)
{
"properties": {
"longBreakDuration": {
"description": "Long break duration in minutes",
"type": "number"
},
"pomodorosBeforeLongBreak": {
"description": "Number of pomodoros before long break",
"type": "number"
},
"shortBreakDuration": {
"description": "Short break duration in minutes",
"type": "number"
},
"workDuration": {
"description": "Work duration in minutes",
"type": "number"
}
},
"type": "object"
}