UNPKG

@niondigital/moco-mcp

Version:

Model Context Protocol (MCP) server for MOCO: time tracking, project management, holidays, and presence monitoring

29 lines (28 loc) 796 B
/** * MCP tools for User Sick Days management * Provides sick day tracking with comprehensive calculations and summaries */ import { z } from 'zod'; declare const GetUserSickDaysSchema: z.ZodObject<{ year: z.ZodNumber; }, "strip", z.ZodTypeAny, { year: number; }, { year: number; }>; /** * Tool: get_user_sick_days * Retrieves user sick days for a specific year */ export declare const getUserSickDaysTool: { name: string; description: string; inputSchema: import("zod-to-json-schema").JsonSchema7Type & { $schema?: string | undefined; definitions?: { [key: string]: import("zod-to-json-schema").JsonSchema7Type; } | undefined; }; handler: (params: z.infer<typeof GetUserSickDaysSchema>) => Promise<string>; }; export {};