n8n-mcp-server
Version:
Model Context Protocol (MCP) server for n8n workflow automation
15 lines (14 loc) • 426 B
TypeScript
/**
* Execution Tools Handler
*
* This module handles calls to execution-related tools.
*/
import { ToolCallResult } from '../../types/index.js';
/**
* Handle execution tool calls
*
* @param toolName Name of the tool being called
* @param args Arguments passed to the tool
* @returns Tool call result
*/
export default function executionHandler(toolName: string, args: Record<string, any>): Promise<ToolCallResult>;