mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
29 lines
2.9 KiB
TypeScript
29 lines
2.9 KiB
TypeScript
import { N8nApiClient } from '../services/n8n-api-client';
|
|
import { McpToolResponse } from '../types/n8n-api';
|
|
import { NodeRepository } from '../database/node-repository';
|
|
import { InstanceContext } from '../types/instance-context';
|
|
import { TemplateService } from '../templates/template-service';
|
|
export declare function getInstanceCacheStatistics(): string;
|
|
export declare function getInstanceCacheMetrics(): import("../utils/cache-utils").CacheMetrics;
|
|
export declare function clearInstanceCache(): void;
|
|
export declare function getN8nApiClient(context?: InstanceContext): N8nApiClient | null;
|
|
export declare function handleCreateWorkflow(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleGetWorkflow(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleGetWorkflowDetails(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleGetWorkflowStructure(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleGetWorkflowMinimal(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleUpdateWorkflow(args: unknown, repository: NodeRepository, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleDeleteWorkflow(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleListWorkflows(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleValidateWorkflow(args: unknown, repository: NodeRepository, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleAutofixWorkflow(args: unknown, repository: NodeRepository, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleTestWorkflow(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleGetExecution(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleListExecutions(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleDeleteExecution(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleHealthCheck(context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleDiagnostic(request: any, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleWorkflowVersions(args: unknown, repository: NodeRepository, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleDeployTemplate(args: unknown, templateService: TemplateService, repository: NodeRepository, context?: InstanceContext): Promise<McpToolResponse>;
|
|
export declare function handleTriggerWebhookWorkflow(args: unknown, context?: InstanceContext): Promise<McpToolResponse>;
|
|
//# sourceMappingURL=handlers-n8n-manager.d.ts.map
|