Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
schema.prisma818 B
generator client { provider = "prisma-client-js" output = "../generated/client" } datasource db { provider = "sqlite" url = "file:dev.db" } model Post { authorId Int content String? createdAt DateTime @default(now()) id Int @id @default(autoincrement()) published Boolean @default(false) title String User User @relation(fields: [authorId], references: [id], onDelete: Cascade) } model Profile { bio String? id Int @id @default(autoincrement()) userId Int @unique(map: "Profile.userId") User User @relation(fields: [userId], references: [id], onDelete: Cascade) } model User { email String @unique(map: "User.email") id Int @id @default(autoincrement()) name String? Post Post[] Profile Profile? }

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