We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/czlonkowski/n8n-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
interface WorkflowNode {
id: string;
name: string;
type: string;
position: [number, number];
parameters: any;
credentials?: any;
disabled?: boolean;
typeVersion?: number;
}
interface SanitizedWorkflow {
nodes: WorkflowNode[];
connections: any;
nodeCount: number;
nodeTypes: string[];
hasTrigger: boolean;
hasWebhook: boolean;
complexity: 'simple' | 'medium' | 'complex';
workflowHash: string;
}
export declare class WorkflowSanitizer {
private static readonly SENSITIVE_PATTERNS;
private static readonly SENSITIVE_FIELDS;
static sanitizeWorkflow(workflow: any): SanitizedWorkflow;
private static sanitizeNode;
private static sanitizeObject;
private static sanitizeString;
private static isSensitiveField;
private static sanitizeConnections;
static generateWorkflowHash(workflow: any): string;
static sanitizeWorkflowRaw(workflow: any): any;
}
export {};
//# sourceMappingURL=workflow-sanitizer.d.ts.map