mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
21 lines
684 B
TypeScript
21 lines
684 B
TypeScript
export interface NodeSourceInfo {
|
|
nodeType: string;
|
|
sourceCode: string;
|
|
credentialCode?: string;
|
|
packageInfo?: any;
|
|
location: string;
|
|
}
|
|
export declare class NodeSourceExtractor {
|
|
private n8nBasePaths;
|
|
extractNodeSource(nodeType: string): Promise<NodeSourceInfo>;
|
|
private parseNodeType;
|
|
private searchNodeInPath;
|
|
private searchInPnpm;
|
|
private searchWithGlobPattern;
|
|
private tryLoadNodeFile;
|
|
listAvailableNodes(category?: string, search?: string): Promise<any[]>;
|
|
private scanDirectoryForNodes;
|
|
private scanPnpmDirectory;
|
|
extractAIAgentNode(): Promise<NodeSourceInfo>;
|
|
}
|
|
//# sourceMappingURL=node-source-extractor.d.ts.map
|