We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jakedismo/KuzuMem-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Database index file for KuzuDB implementation
* Exports the KuzuDBClient class and initialization function
*/
// Export KuzuDB client for use by repositories
import { KuzuDBClient } from './kuzu';
import * as config from './config';
import { RepositoryFactory } from './repository-factory';
import { RepositoryProvider } from './repository-provider';
// Export the KuzuDBClient class and config
export { KuzuDBClient, config, RepositoryFactory, RepositoryProvider };