Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,210
  • Linux
  • Apple
retry.ts333 B
import timers from 'node:timers/promises' export async function retry<A>(fn: () => Promise<A>, max: number, delay: number = 1000): Promise<A> { for (let i = 0; i < max; i++) { try { return await fn() } catch (e) { if (i === max - 1) throw e } await timers.setTimeout(delay) } throw 'Unreachable' }

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