UNPKG

@danielma-tic/mondaydotcom-mcp-server

Version:

MCP Server for the Monday.com API, enabling board operations, item management, and more.

16 lines (15 loc) 546 B
export declare class MondayError extends Error { statusCode?: number | undefined; code?: string | undefined; constructor(message: string, statusCode?: number | undefined, code?: string | undefined); } export declare class ValidationError extends Error { constructor(message: string); } export declare class AuthenticationError extends Error { constructor(message?: string); } export declare class NotFoundError extends Error { constructor(resource: string); } export declare function handleMondayError(error: any): never;