start_pomodoro
Start a timed work session using the Pomodoro Technique to manage productivity workflows, track tasks, and maintain focus during work periods.
Instructions
Start a new pomodoro session
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | No | Task ID to work on (optional) | |
| duration | No | Custom duration in minutes (optional) | |
| type | Yes | Type of session |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Custom duration in minutes (optional)",
"type": "number"
},
"taskId": {
"description": "Task ID to work on (optional)",
"type": "string"
},
"type": {
"description": "Type of session",
"enum": [
"work",
"short-break",
"long-break"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}