timer
Set a timer for any task by entering the duration in seconds. The Widget MCP server integrates interactive tools into chats, providing visual timers for efficient time management.
Instructions
Start a timer. You don't need to say anything else after answering with this tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | Yes | The duration of the timer in seconds |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration": {
"description": "The duration of the timer in seconds",
"type": "number"
}
},
"required": [
"duration"
],
"type": "object"
}