manage_countdown
Set, track, and manage persistent countdown timers for events and deadlines using CRUD operations. Create timers with names and target dates, retrieve specific or all timers, and delete as needed.
Instructions
Manage persistent countdown timers. Supports CRUD operations: set (create), get (read one), list (read all), delete.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform | |
| id | No | Countdown ID (required for get/delete, auto-generated for set if not provided) | |
| name | No | Name/description for the countdown (required for set) | |
| target_date | No | Target date in ISO 8601 format (required for set) | |
| timezone | No | IANA timezone. Defaults to UTC. |