UNPKG

mcp-wtit

Version:

A Model Context Protocol (MCP) server that provides current time in ISO8601 format with timezone support

14 lines 308 B
export interface ITimeData { iso8601: string; timestamp: number; timezone: string; } export interface ITimeZoneInfo { name: string; offset: number; } export interface ITimeFormatOptions { includeMilliseconds?: boolean; timezone?: string; } //# sourceMappingURL=time.types.d.ts.map