/** * Tool registration barrel file. * * Imports all domain tool modules and exports a single * registerAllTools() function that wires them into the MCP server. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { PveClient } from "../core/client.js"; import type { AppConfig } from "../types/index.js"; export declare function registerAllTools(server: McpServer, client: PveClient, config: AppConfig): void;