/** * Collection Tools - MCP Tools for Model Collection Management * * Provides tools for: * - Collection management (list, get, create, update, delete) * - Collection models (add, remove) */ import { MCPToolDefinition, MCPToolResult } from './src/types/mcp-types'; export declare const collectionToolDefinitions: MCPToolDefinition[]; export declare class CollectionTools { private static instance; private client; constructor(registryUrl: string, apiKey: string); static getInstance(registryUrl?: string, apiKey?: string): CollectionTools; getTools(): MCPToolDefinition[]; executeTool(toolName: string, args: Record): Promise; private listCollections; private getCollection; private createCollection; private updateCollection; private deleteCollection; private addModel; private removeModel; } export default CollectionTools; //# sourceMappingURL=collection-tools.d.ts.map