Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
env.ts402 B
export class PrismaConfigEnvError extends Error { constructor(name: string) { super(`Missing required environment variable: ${name}`) this.name = 'PrismaConfigEnvError' } } export function env<Env extends Record<string, string | undefined>>(name: keyof Env & string): string { const value = process.env[name] if (!value) { throw new PrismaConfigEnvError(name) } 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