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
_schema.ts•595 B
import { idForProvider } from '../../_utils/idForProvider'
import testMatrix from '../_matrix'
export default testMatrix.setupSchema(({ provider }) => {
return /* Prisma */ `
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "${provider}"
}
model Artist {
id ${idForProvider(provider)}
name String
albums Album[]
@@unique([name])
}
model Album {
id ${idForProvider(provider)}
title String
artistId String
artist Artist @relation(fields: [artistId], references: [id])
@@index([artistId])
}
`
})