Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
pick.ts291 B
export function pick<T extends object, U extends keyof T>(obj: T, keys: U[]): Pick<T, U> { return Object.entries(obj).reduce<Pick<T, U>>( (acc, [key, value]) => { if (keys.includes(key as U)) { acc[key] = value } return acc }, {} as Pick<T, U>, ) }

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