import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { McpToolResponse } from "../types/index.js"; interface ToolRegistrationConfig { title: string; description: string; inputSchema: Record; } type ToolHandler = (args: any) => Promise; export declare function registerMcpTool(server: McpServer, name: string, config: ToolRegistrationConfig, handler: ToolHandler): unknown; export {};