Labsco
ZeparHyfar logo

MCP Datetime

โ˜… 27

from ZeparHyfar

A server for datetime formatting and file name generation, with support for various formats and timezones.

๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

mcp-datetime

English | ๆ—ฅๆœฌ่ชž

A datetime formatting service implemented as an MCP server for the Claude Desktop Application. Supports generation of datetime strings in various formats.

Note: This package has been tested only on macOS. Windows compatibility has not been verified.

Features

  • โœจ Support for various datetime formats
  • ๐Ÿ‡ฏ๐Ÿ‡ต Japanese language support
  • ๐Ÿ“ Optimized formats for filename generation
  • ๐ŸŒ Accurate timezone handling
  • ๐Ÿ”ง Seamless integration with Claude Desktop App

MCP Server Components

Tools

The server implements one tool:

  • get_datetime: Get current date and time in various formats
    • Takes "format" as a required string argument
    • Returns formatted datetime string based on specified format
    • Supports multiple format types including standard, Japanese, and ISO formats

Basic Examples

  • Command format

    # Standard datetime format
    call datetime-service.get_datetime {"format": "datetime"}
    # Result: 2024-12-10 00:54:01
    
    # Japanese format
    call datetime-service.get_datetime {"format": "datetime_jp"}
    # Result: 2024ๅนด12ๆœˆ10ๆ—ฅ 00ๆ™‚54ๅˆ†01็ง’
    
    # Filename format
    call datetime-service.get_datetime {"format": "filename_md"}
    # Result: 20241210005401.md
  • Claude Desktop App prompt examples

    • User

      Please tell me the current time in date_slash format
    • Claude

      I'll get the current date in date_slash format.
      
      The current date is 2024/12/12

Supported Formats

Format NameExampleDescription
date2024-12-10Standard date format
date_slash2024/12/10Date with slashes
date_jp2024ๅนด12ๆœˆ10ๆ—ฅJapanese date format
datetime2024-12-10 00:54:01Standard datetime
datetime_jp2024ๅนด12ๆœˆ10ๆ—ฅ 00ๆ™‚54ๅˆ†01็ง’Japanese datetime
datetime_t2024-12-10T00:54:01DateTime with T separator
compact20241210005401Compact format for IDs
compact_date20241210Compact date only
compact_time005401Compact time only
filename_md20241210005401.mdMarkdown filename
filename_txt20241210005401.txtText filename
filename_log20241210005401.logLog filename
iso2024-12-10T00:54:01+0900ISO 8601 format
iso_basic20241210T005401+0900Basic ISO format
log2024-12-10 00:54:01.123456Log format with microseconds
log_compact20241210_005401Compact log format
time00:54:01Time only
time_jp00ๆ™‚54ๅˆ†01็ง’Japanese time format

Debugging

Since MCP servers run over stdio, debugging can be challenging. We recommend using the MCP Inspector:

  • Using PyPI package

    npx @modelcontextprotocol/inspector uvx mcp-datetime
  • Using downloaded source code from GitHub

    git clone https://github.com/ZeparHyfar/mcp-datetime.git
    npx @modelcontextprotocol/inspector uvx --directory ./mcp-datetime run mcp-datetime