Categories

Pomodoro Timer

Classic Pomodoro technique: 25 minutes of focused work followed by 5 minutes of break to boost productivity

Duration of each focused work session

Duration of short breaks between work sessions

Duration of long breaks after completing sessions

How many work sessions to complete before a long break

Name of the task you're working on (optional)

API Documentation

Request Endpoint

POST /en/api/tools/pomodoro-timer

Request Parameters

Parameter Name Type Required Description
workMinutes number No Duration of each focused work session
breakMinutes number No Duration of short breaks between work sessions
longBreakMinutes number No Duration of long breaks after completing sessions
sessionsUntilLongBreak number No How many work sessions to complete before a long break
taskName text No Name of the task you're working on (optional)

Response Format

{
  "result": "Initial display content",
  "interactive": true,
  "components": [
    {
      "type": "timer",
      "id": "timer1",
      "config": {
        "label": "Countdown",
        "duration": 60
      }
    }
  ],
  "state": {
    "key": "value"
  },
  "actions": [
    {
      "type": "start",
      "id": "start-btn",
      "label": "Start"
    }
  ],
  "styles": "/* Custom CSS */",
  "scripts": "/* Client-side scripts */",
  "error": "Error message (optional)",
  "message": "Notification message (optional)",
  "metadata": {
    "key": "value"
  }
}
Interactive Component: Interactive Component

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-pomodoro-timer": {
      "name": "pomodoro-timer",
      "description": "Classic Pomodoro technique: 25 minutes of focused work followed by 5 minutes of break to boost productivity",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=pomodoro-timer",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]