UNPKG

mcp-wtit

Version:

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

8 lines 547 B
import type { IGetCurrentTimeUseCase, IGetCurrentTimeUseCaseInput, IGetCurrentTimeUseCaseOutput } from '../interfaces/get-current-time.usecase.interface.js'; import type { ITimeService } from '../../domain/interfaces/time.service.interface.js'; export declare class GetCurrentTimeUseCase implements IGetCurrentTimeUseCase { private readonly timeService; constructor(timeService: ITimeService); execute(input?: IGetCurrentTimeUseCaseInput): Promise<IGetCurrentTimeUseCaseOutput>; } //# sourceMappingURL=get-current-time.usecase.d.ts.map