Skip to main content
Glama
cache.ts409 B
class Cache { private cache: Map<string, any> = new Map(); get(key: string): any { return this.cache.get(key); } has(key: string): boolean { return this.cache.has(key); } set(key: string, value: any): void { this.cache.set(key, value); } delete(key: string): void { this.cache.delete(key); } clear(): void { this.cache.clear(); } } export default new Cache();

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/vwinterdev/mcp-test'

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