/** * MCP Client Capabilities Index * * Simple index of all MCP client capabilities loaded from JSON file. */ export * from './types'; import { McpClientRecord } from './types'; /** * Type for the clients object structure */ export type ClientsIndex = { [clientName: string]: McpClientRecord; }; /** * All MCP client capabilities indexed by client name */ export declare const mcpClients: ClientsIndex; export default mcpClients; //# sourceMappingURL=index.d.ts.map