/** * Marketplace Management Internal MCP * * Provides tools for managing skill marketplaces. * Aligned with Photon's marketplace management pattern. */ import { InternalMCP, InternalTool, InternalToolResult } from './types.js'; export declare class MarketplaceMCP implements InternalMCP { name: string; description: string; private marketplaceClient; tools: InternalTool[]; /** * Initialize marketplace client */ private ensureClient; executeTool(toolName: string, params: any): Promise; private handleList; private handleSearch; } //# sourceMappingURL=marketplace.d.ts.map