n8n-mcp
Version:
Integration between n8n workflow automation and Model Context Protocol (MCP)
16 lines • 710 B
TypeScript
interface Version {
major: number;
minor: number;
patch: number;
}
interface VersionCompatibility {
status: 'compatible' | 'outdated_mcp' | 'outdated_n8n' | 'unknown';
warning?: string;
}
export declare function parseVersion(version: string): Version | null;
export declare function compareVersions(v1: Version, v2: Version): number;
export declare function getSupportedN8nVersion(): string | null;
export declare function getVersionCompatibilityStatus(instanceVersion: string | undefined | null, supportedVersion: string | null): VersionCompatibility;
export declare function formatVersion(version: string | undefined | null): string;
export {};
//# sourceMappingURL=version-utils.d.ts.map