mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
13 lines
499 B
TypeScript
13 lines
499 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
export declare class MCPNode implements INodeType {
|
|
description: INodeTypeDescription;
|
|
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
private getMCPClient;
|
|
private callMCPTool;
|
|
private listMCPTools;
|
|
private readMCPResource;
|
|
private listMCPResources;
|
|
private getMCPPrompt;
|
|
private listMCPPrompts;
|
|
}
|
|
//# sourceMappingURL=MCPNode.node.d.ts.map
|