MCPcopy
hub / github.com/czlonkowski/n8n-mcp / HealthCheckResponseData

Interface HealthCheckResponseData

src/mcp/handlers-n8n-manager.ts:66–88  ·  view source on GitHub ↗

* Health Check Response Data Structure

Source from the content-addressed store, hash-verified

64 * Health Check Response Data Structure
65 */
66interface HealthCheckResponseData {
67 status: string;
68 instanceId?: string;
69 n8nVersion?: string;
70 features?: Record<string, unknown>;
71 apiUrl?: string;
72 mcpVersion: string;
73 supportedN8nVersion?: string;
74 versionCheck: {
75 current: string;
76 latest: string | null;
77 upToDate: boolean;
78 message: string;
79 updateCommand?: string;
80 };
81 performance: {
82 responseTimeMs: number;
83 cacheHitRate: string;
84 cachedInstances: number;
85 };
86 nextSteps?: string[];
87 updateWarning?: string;
88}
89
90/**
91 * Cloud Platform Guide Structure

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected