Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
Help.ts558 B
import { bold, red } from 'kleur/colors' /** * Unknown command */ export function unknownCommand(helpTemplate: string, cmd: string): HelpError { return new HelpError(`\n${bold(red(`!`))} Unknown command "${cmd}"\n${helpTemplate}`) } /** * Custom help error used to display help * errors without printing a stack trace */ export class HelpError extends Error { constructor(msg: string) { super(msg) this.name = 'HelpError' // setPrototypeOf is needed for custom errors to work Object.setPrototypeOf(this, HelpError.prototype) } }

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