UNPKG

n8n-mcp-server

Version:

Model Context Protocol (MCP) server for n8n workflow automation

15 lines (14 loc) 374 B
/** * Error Codes Module * * This module defines error codes used throughout the application. * These codes are compatible with the MCP SDK error handling system. */ export declare enum ErrorCode { InitializationError = 1000, AuthenticationError = 1001, NotFoundError = 1002, InvalidRequest = 1003, InternalError = 1004, NotImplemented = 1005 }