/** * MCP Tools Registration * * Registers all available tools with the transport handler. * Tools are organized by domain: document, query, edit, validate, import, ai. */ import type { TransportHandler } from '../transport/handler.js'; import type { ToolDefinition } from '../types.js'; /** * All tools combined for direct access (used by stdio transport) */ export declare const allTools: ToolDefinition[]; /** * Register all tools with the transport handler */ export declare function registerTools(handler: TransportHandler): void; //# sourceMappingURL=index.d.ts.map