n8n-mcp
Version:
Integration between n8n workflow automation and Model Context Protocol (MCP)
30 lines • 759 B
TypeScript
export interface ToolDocumentation {
name: string;
category: string;
essentials: {
description: string;
keyParameters: string[];
example: string;
performance: string;
tips: string[];
};
full: {
description: string;
parameters: Record<string, {
type: string;
description: string;
required?: boolean;
default?: any;
examples?: string[];
enum?: string[];
}>;
returns: string;
examples: string[];
useCases: string[];
performance: string;
bestPractices: string[];
pitfalls: string[];
relatedTools: string[];
};
}
//# sourceMappingURL=types.d.ts.map