mcp-wtit
Version:
A Model Context Protocol (MCP) server that provides current time in ISO8601 format with timezone support
8 lines • 361 B
TypeScript
import type { ITimeData, ITimeFormatOptions } from '../../shared/types/time.types.js';
export interface ITimeService {
getCurrentTime(options?: ITimeFormatOptions): ITimeData;
getCurrentTimeISO8601(options?: ITimeFormatOptions): string;
getCurrentTimestamp(): number;
getTimeZone(): string;
}
//# sourceMappingURL=time.service.interface.d.ts.map