Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
uniqueBy.ts350 B
/** * Returns unique elements of array * @param arr Array */ export function uniqueBy<T>(arr: readonly T[], callee: (element: T) => string): T[] { const result: { [key: string]: T } = {} for (const value of arr) { const hash = callee(value) if (!result[hash]) { result[hash] = value } } return Object.values(result) }

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