Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
debounce.ts495 B
/** * Makes that a function is only executed after repeated calls (usually * excessive calls) stop for a defined amount of {@link time}. * @param fn to debounce * @param time to unlock * @returns */ function debounce<P extends any[], R>(fn: (...args: P) => R, time: number) { let timeoutId: number | NodeJS.Timeout | undefined return (...args: P): void => { clearTimeout(timeoutId as NodeJS.Timeout) timeoutId = setTimeout(() => fn(...args), time) } } export { debounce }

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