Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
printMigrationId.ts472 B
import { bold, cyan } from 'kleur/colors' export function printMigrationId(migrationId: string): string { const words = migrationId.split('_') if (words.length === 1) { return cyan(bold(migrationId)) } return `${words[0]}_${cyan(bold(words.slice(1).join('_')))}` } export function printMigrationIds(migrationIds: string[]): string { return migrationIds.reduce((acc, migrationId) => { return acc + '- ' + printMigrationId(migrationId) + '\n' }, '') }

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