Time MCP Server

convert_time

Convert time between timezones

Input Schema

NameRequiredDescriptionDefault
source_timezoneYesSource IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'Etc/UTC' as local timezone if no source timezone provided by the user.
target_timezoneYesTarget IANA timezone name (e.g., 'Asia/Tokyo', 'America/San_Francisco'). Use 'Etc/UTC' as local timezone if no target timezone provided by the user.
timeYesTime to convert in 24-hour format (HH:MM)

Input Schema (JSON Schema)

{ "properties": { "source_timezone": { "description": "Source IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'Etc/UTC' as local timezone if no source timezone provided by the user.", "type": "string" }, "target_timezone": { "description": "Target IANA timezone name (e.g., 'Asia/Tokyo', 'America/San_Francisco'). Use 'Etc/UTC' as local timezone if no target timezone provided by the user.", "type": "string" }, "time": { "description": "Time to convert in 24-hour format (HH:MM)", "type": "string" } }, "required": [ "source_timezone", "time", "target_timezone" ], "type": "object" }

You must be authenticated.

Other Tools