n8n-mcp-server
Version:
Model Context Protocol (MCP) server for n8n workflow automation
16 lines (15 loc) • 495 B
TypeScript
/**
* Execution Tools Module
*
* This module provides MCP tools for interacting with n8n workflow executions.
*/
import { ToolDefinition } from '../../types/index.js';
/**
* Set up execution management tools
*
* @returns Array of execution tool definitions
*/
export declare function setupExecutionTools(): Promise<ToolDefinition[]>;
export { ListExecutionsHandler } from './list.js';
export { GetExecutionHandler } from './get.js';
export { DeleteExecutionHandler } from './delete.js';