UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

12 lines (11 loc) 548 B
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, NodeExecutionWithMetadata } from 'n8n-workflow'; import * as listSearch from './listSearch'; import * as resourceMapping from './resourceMapping'; export declare class McpClient implements INodeType { description: INodeTypeDescription; methods: { listSearch: typeof listSearch; resourceMapping: typeof resourceMapping; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][] | NodeExecutionWithMetadata[][] | null>; }