Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
load.ts557 B
import type { PlatformInfo } from '@prisma/get-platform' import { handleLibraryLoadingErrors } from './handleEngineLoadingErrors' /** * This is a wrapper around `require` for loading a Node-API library. * This is to avoid eval and hide require away from bundlers */ export function loadLibrary<T>(id: string, platformInfo: PlatformInfo): T { try { return require(id) as T } catch (e: any) { const errorMessage = handleLibraryLoadingErrors({ e: e as Error, platformInfo, id, }) throw new Error(errorMessage) } }

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