Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
Cache.ts460 B
type CacheEntry<V> = { value: V } export class Cache<K, V> { private _map = new Map<K, CacheEntry<V>>() get(key: K): V | undefined { return this._map.get(key)?.value } set(key: K, value: V): void { this._map.set(key, { value }) } getOrCreate(key: K, create: () => V): V { const cached = this._map.get(key) if (cached) { return cached.value } const value = create() this.set(key, value) return value } }

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/prisma/prisma'

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