@aot-tech/clockify-mcp-server
Version:
MCP Server for Clockify time tracking integration with AI tools
17 lines (16 loc) • 574 B
TypeScript
interface LogEntry {
timestamp: string;
type: "REQUEST" | "RESPONSE" | "ERROR";
endpoint: string;
method?: string;
body?: any;
response?: any;
error?: any;
duration?: number;
}
export declare function logApiCall(entry: LogEntry): void;
export declare function logRequest(endpoint: string, method: string, body: any): void;
export declare function logResponse(endpoint: string, response: any, duration?: number): void;
export declare function logError(endpoint: string, error: any): void;
export declare function clearLogs(): void;
export {};