UNPKG

mcp-wtit

Version:

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

14 lines 485 B
import type { ITimeData } from '../../shared/types/time.types.js'; export interface IGetCurrentTimeUseCaseInput { includeMilliseconds?: boolean; timezone?: string; } export interface IGetCurrentTimeUseCaseOutput { success: boolean; data?: ITimeData; error?: string; } export interface IGetCurrentTimeUseCase { execute(input?: IGetCurrentTimeUseCaseInput): Promise<IGetCurrentTimeUseCaseOutput>; } //# sourceMappingURL=get-current-time.usecase.interface.d.ts.map