n8n-mcp
Version:
Integration between n8n workflow automation and Model Context Protocol (MCP)
17 lines • 559 B
TypeScript
import type { UIAppEntry } from './types';
export declare class UIAppRegistry {
private static entries;
private static toolIndex;
private static loaded;
static load(): void;
static getAppForTool(toolName: string): UIAppEntry | null;
static getAppById(id: string): UIAppEntry | null;
static getAllApps(): UIAppEntry[];
static injectToolMeta(tools: Array<{
name: string;
_meta?: Record<string, unknown>;
[key: string]: any;
}>): void;
static reset(): void;
}
//# sourceMappingURL=registry.d.ts.map