get_current_date
Retrieve the current date in any IANA timezone, returning YYYY-MM-DD, day of week, and ISO week number for use as a stable reference.
Instructions
Return the current date in the given IANA timezone.
Use this when an agent needs a stable, server-computed "today" — for example before calling other tools that require a concrete date. Does NOT consult any holiday calendar.
Args: timezone: IANA timezone name (e.g. "UTC", "Europe/Berlin", "America/New_York", "Asia/Tokyo"). Defaults to "UTC".
Returns: dict with keys: date (YYYY-MM-DD), timezone, day_of_week (full weekday name), iso_week (1-53).
Raises:
ValueError: if timezone is not a recognized IANA zone.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timezone | No | UTC |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||