mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 21:43:07 +00:00
chore: add pre-built dist folder for npx usage
This commit is contained in:
committed by
Romuald Członkowski
parent
a70d96a373
commit
5057481e70
29
dist/mcp/handlers-n8n-manager.d.ts
vendored
Normal file
29
dist/mcp/handlers-n8n-manager.d.ts
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
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
|
||||
Reference in New Issue
Block a user