We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bobmatnyc/mcp-memory-ts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
memory-client.ts•581 B
/**
* @deprecated This file is deprecated.
*
* The MemoryCore singleton pattern has been replaced with per-request instances
* that use user-specific credentials from Clerk metadata.
*
* New implementation:
* - Each user stores their own Turso and OpenAI credentials in Clerk user metadata
* - Database connections are created per-request with user credentials
* - MemoryCore instances are created per-request (no singleton)
*
* See lib/auth.ts for the new getMemoryCore() implementation.
* See lib/user-metadata.ts for credential management functions.
*/
export {};