get_current_time
Retrieve the current time for a specified IANA timezone using the Time MCP Server. Input a valid timezone (e.g., 'America/New_York') to return accurate local time information.
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"
}