/** * MCP Tool handlers for Coolify. * * All handlers route through the Coolify SDK facade. * Uses a generic mcpCall wrapper to eliminate boilerplate. * * @module */ import type { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; /** * Main handler — routes tool calls to SDK methods. * * @param name - Tool name * @param args - Tool arguments * @returns MCP tool result */ export declare function handleToolCall(name: string, args: Record): Promise; //# sourceMappingURL=handlers.d.ts.map