Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
coleam00 avatar

World Clock

  • 2 installs
  • 107 repo stars
  • Updated January 27, 2026
  • coleam00/custom-agent-with-skills

Check time and time zones across different locations

About

Displays current time in different time zones and locations worldwide. Shows global time.

  • Time zone lookup
  • Global time display

World Clock by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #1,842 of 2,719 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/coleam00/custom-agent-with-skills --skill world_clock

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars107
Last updatedJanuary 27, 2026
Repositorycoleam00/custom-agent-with-skills

What it does

Check time and time zones across different locations

Files

SKILL.mdMarkdownGitHub ↗

World Clock Skill

Get the current time anywhere in the world and convert times between timezones. Useful for scheduling across timezones, checking times in other cities, and handling daylight saving time.

When to Use

  • User asks "What time is it in [city]?"
  • User needs to convert time between timezones
  • User is scheduling a meeting across timezones
  • User asks about daylight saving time
  • User asks when business hours start/end in another timezone

Available Operations

1. Current Time: Get the current time in any timezone 2. Time Conversion: Convert a specific time from one timezone to another 3. DST Information: Check if a location is currently in daylight saving time 4. Multiple Timezones: Show current time in several locations at once

Instructions

When a user asks about time or timezones:

Step 1: Identify the Request Type

  • Current time query: "What time is it in Tokyo?"
  • Conversion query: "If it's 3pm in New York, what time is it in London?"
  • Scheduling query: "When should I schedule a call for 9am PST for someone in Berlin?"

Step 2: Get Timezone Identifier

Use the WorldTimeAPI with the appropriate timezone identifier.

API Endpoint:

https://worldtimeapi.org/api/timezone/{Area}/{Location}

Step 3: Make the API Call

Example - Get Tokyo time:

https://worldtimeapi.org/api/timezone/Asia/Tokyo

Example - Get New York time:

https://worldtimeapi.org/api/timezone/America/New_York

Step 4: Present Results

Format clearly with:

  • Current local time (12-hour and 24-hour format)
  • Day of the week and date
  • Timezone abbreviation (PST, EST, JST, etc.)
  • UTC offset
  • Whether DST is active

Common Timezone Identifiers

Americas

CityTimezone ID
New YorkAmerica/New_York
Los AngelesAmerica/Los_Angeles
ChicagoAmerica/Chicago
DenverAmerica/Denver
TorontoAmerica/Toronto
VancouverAmerica/Vancouver
Mexico CityAmerica/Mexico_City
Sao PauloAmerica/Sao_Paulo
Buenos AiresAmerica/Argentina/Buenos_Aires

Europe

CityTimezone ID
LondonEurope/London
ParisEurope/Paris
BerlinEurope/Berlin
AmsterdamEurope/Amsterdam
RomeEurope/Rome
MadridEurope/Madrid
MoscowEurope/Moscow
IstanbulEurope/Istanbul
DublinEurope/Dublin

Asia & Pacific

CityTimezone ID
TokyoAsia/Tokyo
SingaporeAsia/Singapore
Hong KongAsia/Hong_Kong
ShanghaiAsia/Shanghai
BeijingAsia/Shanghai
SeoulAsia/Seoul
MumbaiAsia/Kolkata
DelhiAsia/Kolkata
DubaiAsia/Dubai
SydneyAustralia/Sydney
MelbourneAustralia/Melbourne
AucklandPacific/Auckland

Africa & Middle East

CityTimezone ID
CairoAfrica/Cairo
JohannesburgAfrica/Johannesburg
LagosAfrica/Lagos
Tel AvivAsia/Jerusalem
RiyadhAsia/Riyadh

Timezone Abbreviations Reference

AbbreviationFull NameUTC Offset
PSTPacific Standard TimeUTC-8
PDTPacific Daylight TimeUTC-7
MSTMountain Standard TimeUTC-7
MDTMountain Daylight TimeUTC-6
CSTCentral Standard TimeUTC-6
CDTCentral Daylight TimeUTC-5
ESTEastern Standard TimeUTC-5
EDTEastern Daylight TimeUTC-4
GMTGreenwich Mean TimeUTC+0
BSTBritish Summer TimeUTC+1
CETCentral European TimeUTC+1
CESTCentral European Summer TimeUTC+2
ISTIndia Standard TimeUTC+5:30
JSTJapan Standard TimeUTC+9
AESTAustralian Eastern Standard TimeUTC+10
AEDTAustralian Eastern Daylight TimeUTC+11

API Response Format

The WorldTimeAPI returns:

{
  "abbreviation": "EST",
  "datetime": "2024-01-15T14:30:00.123456-05:00",
  "day_of_week": 1,
  "day_of_year": 15,
  "dst": false,
  "dst_offset": 0,
  "timezone": "America/New_York",
  "unixtime": 1705343400,
  "utc_datetime": "2024-01-15T19:30:00.123456+00:00",
  "utc_offset": "-05:00",
  "week_number": 3
}

Key fields:

  • datetime: Current local time with offset
  • abbreviation: Timezone abbreviation (EST, PST, etc.)
  • utc_offset: Offset from UTC
  • dst: Whether daylight saving time is active
  • day_of_week: 0=Sunday, 1=Monday, etc.

Examples

Example 1: Current Time Query

User asks: "What time is it in Tokyo?"

1. Call: https://worldtimeapi.org/api/timezone/Asia/Tokyo 2. Response format: "It's currently 10:30 PM JST (Japan Standard Time) in Tokyo. That's Monday, January 15, 2024. UTC offset: +09:00"

Example 2: Time Conversion

User asks: "If I schedule a call for 3pm Eastern, what time is that in London?"

1. Get current UTC offset for both timezones 2. Calculate: Eastern (EST) is UTC-5, London (GMT) is UTC+0 3. Difference: 5 hours ahead 4. Response: "3:00 PM Eastern = 8:00 PM GMT in London"

Example 3: Multi-Timezone Display

User asks: "Show me the time in New York, London, and Tokyo"

1. Call all three timezone endpoints 2. Present in a table format:

CityLocal TimeDate
New York2:30 PM ESTMon, Jan 15
London7:30 PM GMTMon, Jan 15
Tokyo4:30 AM JSTTue, Jan 16

Example 4: Meeting Scheduling

User asks: "I need to find a time that works for LA, New York, and Berlin"

1. Get current times for all three 2. Note offsets: LA (PST -8), NY (EST -5), Berlin (CET +1) 3. Find overlap during business hours (9am-6pm local) 4. Suggest: "9:00 AM Pacific = 12:00 PM Eastern = 6:00 PM Berlin"

Handling Edge Cases

City Not in List

If user mentions a city not in the common list: 1. Try to find the nearest major city in the same timezone 2. Or search for the country's timezone 3. Note any uncertainty in the response

Daylight Saving Time

DST changes dates vary by country:

  • US/Canada: 2nd Sunday March, 1st Sunday November
  • Europe: Last Sunday March, Last Sunday October
  • Australia: 1st Sunday October, 1st Sunday April (opposite hemisphere)
  • Japan, China, India: No DST

Always check the dst field in the API response.

Date Line Crossing

When converting across the International Date Line, the date may change:

  • Tokyo is 14 hours ahead of Los Angeles
  • Monday 10pm in LA = Tuesday 12pm in Tokyo

Notes

  • WorldTimeAPI is completely free with no API key required
  • Rate limit: 1 request per second
  • Times are accurate to the second
  • API automatically handles DST transitions
  • For offline use, basic conversions can be done with UTC offset math

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.