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
import testMatrix from './_matrix'
// @ts-ignore
import type { PrismaClient } from './generated/prisma/client'
declare let prisma: PrismaClient
testMatrix.setupTestSuite(
() => {
test('upsert should not fail', async () => {
await prisma.resource.upsert({
where: {
id: 2147483647 + 1,
},
update: {},
create: {
id: 2147483647 + 1,
},
})
await prisma.resource.upsert({
where: {
id: 2147483647 + 1,
},
update: {},
create: {
id: 2147483647 + 1,
},
})
})
},
{
optOut: {
from: ['sqlite', 'postgresql', 'mongodb', 'cockroachdb', 'sqlserver'],
reason: 'This issue only happens on MySQL',
},
},
)