import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { ILibraryOperations } from "../../features/operations/library-operations.js"; /** * Parameters for the add tool */ export interface AddToolParams { /** Input string or array of strings (PMID, DOI, BibTeX, RIS, CSL-JSON) */ input: string | string[]; } /** * Register the add tool with the MCP server. * * @param server - The MCP server instance * @param getLibraryOperations - Function to get the current library operations instance */ export declare function registerAddTool(server: McpServer, getLibraryOperations: () => ILibraryOperations): void; //# sourceMappingURL=add.d.ts.map