Skip to main content
Glama
index.ts936 B
/** * Cache System Exports * Centralized exports for all caching functionality */ // Core cache infrastructure export { BaseCacheManager } from './cache-manager.js'; export type { CacheEntry, CacheConfig } from './cache-manager.js'; // Specialized cache implementations export { AnalysisCache } from './analysis-cache.js'; export type { AnalysisResult } from './analysis-cache.js'; export { PromptCache, MemoryCache } from './prompt-cache.js'; export type { PromptCacheEntry, MemoryEntry } from './prompt-cache.js'; // Import the classes for the convenience functions import { AnalysisCache } from './analysis-cache.js'; import { PromptCache, MemoryCache } from './prompt-cache.js'; // Convenience exports for common usage patterns export const getAnalysisCache = () => AnalysisCache.getInstance(); export const getPromptCache = () => PromptCache.getInstance(); export const getMemoryCache = () => MemoryCache.getInstance();

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/houtini-ai/lm'

If you have feedback or need assistance with the MCP directory API, please join our Discord server