n8n-mcp
Version:
Integration between n8n workflow automation and Model Context Protocol (MCP)
9 lines • 375 B
TypeScript
export declare class IntentSanitizer {
sanitize(intent: string): string;
containsPII(intent: string): boolean;
detectPIITypes(intent: string): string[];
truncate(intent: string, maxLength?: number): string;
isSafeForTelemetry(intent: string): boolean;
}
export declare const intentSanitizer: IntentSanitizer;
//# sourceMappingURL=intent-sanitizer.d.ts.map