get_current_time
Retrieve the current time and date for a specified IANA timezone using the Time MCP Server. Input the timezone name to get accurate local time information for global applications.
Instructions
Get current time in a specific timezones
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| timezone | Yes | IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'Etc/UTC' as local timezone if no timezone provided by the user. | 
Input Schema (JSON Schema)
{
  "properties": {
    "timezone": {
      "description": "IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'Etc/UTC' as local timezone if no timezone provided by the user.",
      "type": "string"
    }
  },
  "required": [
    "timezone"
  ],
  "type": "object"
}