@makafeli/n8n-workflow-builder
Version:
Model Context Protocol server for n8n workflow management
10 lines • 726 B
TypeScript
import { WorkflowSpec } from '../types/workflow';
import { N8NWorkflowResponse } from '../types/api';
export declare function createWorkflow(workflow: WorkflowSpec): Promise<N8NWorkflowResponse>;
export declare function getWorkflow(id: string): Promise<N8NWorkflowResponse>;
export declare function updateWorkflow(id: string, workflow: WorkflowSpec): Promise<N8NWorkflowResponse>;
export declare function deleteWorkflow(id: string): Promise<any>;
export declare function activateWorkflow(id: string): Promise<N8NWorkflowResponse>;
export declare function deactivateWorkflow(id: string): Promise<N8NWorkflowResponse>;
export declare function listWorkflows(): Promise<N8NWorkflowResponse[]>;
//# sourceMappingURL=n8nApi.d.ts.map