Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    ghosttypes

    get-time

    ghosttypes/get-time
    Productivity
    2
    1 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Get the current local time in various formats. Use when the user asks for the current time, what time it is, the date, or needs timestamp information...

    SKILL.md

    Get Time

    This skill provides the current local time with automatic timezone detection or manual timezone specification.

    Usage

    Automatic Timezone Detection

    The script attempts to auto-detect the user's timezone using IP geolocation:

    python3 scripts/get_time.py [format]
    

    Manual Timezone Specification

    For more accurate results, especially in containerized environments, specify the timezone explicitly:

    python3 scripts/get_time.py [format] [timezone]
    

    Important: When you know the user's timezone from context or memory, always pass it explicitly for accuracy.

    Available Formats

    • full (default): Full datetime with day name and timezone (e.g., "Sunday, December 14, 2025 at 05:09:44 PM EST")
    • time: Just the time in 12-hour format (e.g., "05:09:44 PM")
    • date: Just the date (e.g., "2025-12-14")
    • datetime: Date and time with timezone (e.g., "2025-12-14 05:09:44 PM EST")
    • iso: ISO 8601 format (e.g., "2025-12-14T17:09:44-05:00")
    • unix: Unix timestamp (e.g., "1734220184")

    Common Timezones

    • US Eastern: America/New_York
    • US Pacific: America/Los_Angeles
    • US Central: America/Chicago
    • US Mountain: America/Denver
    • UK: Europe/London
    • Central Europe: Europe/Paris
    • Japan: Asia/Tokyo
    • Australia Eastern: Australia/Sydney

    See IANA timezone database for full list.

    Examples

    # Auto-detect timezone (may be less accurate in containers)
    python3 scripts/get_time.py
    
    # Get time in US Eastern timezone
    python3 scripts/get_time.py full America/New_York
    
    # Get just the time in Pacific timezone
    python3 scripts/get_time.py time America/Los_Angeles
    
    # Get ISO format for logging in specific timezone
    python3 scripts/get_time.py iso Europe/London
    
    # Get Unix timestamp (timezone-independent)
    python3 scripts/get_time.py unix
    

    Best Practices

    1. Use user's known location: If you have information about the user's location from conversation history or memory, convert it to a timezone and pass it explicitly
    2. Common US locations:
      • New York, Boston, Washington DC → America/New_York
      • Los Angeles, San Francisco, Seattle → America/Los_Angeles
      • Chicago, Dallas → America/Chicago
      • Denver, Phoenix → America/Denver
    3. Fallback: If timezone detection fails or no timezone is specified, the script falls back to UTC
    Recommended Servers
    Linkup
    Linkup
    Google Calendar
    Google Calendar
    Bright Data
    Bright Data
    Repository
    ghosttypes/pokemon-go-mcp
    Files