Get current timer status
everhour_get_current_timerRetrieve the current state of your Everhour timer: see if it's running, for how long, and total time tracked today.
Instructions
Return the state of the authenticated user's timer.
Args:
response_format ('markdown' | 'json'): Output format
Returns:
When running: { "status": "active", "duration": seconds, "today": seconds, "task": {...}, "startedAt": ISO-8601 }
When stopped: { "status": "stopped", "today": seconds }
Examples:
"Is my timer running?" → no args
"How long have I been working today?" → check .today (seconds)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | Output format: 'markdown' for human-readable text or 'json' for machine-readable structured data | markdown |