Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
schema.sql1.04 kB
DROP TABLE IF EXISTS Customers; CREATE TABLE IF NOT EXISTS Customers ( CustomerId INTEGER PRIMARY KEY, CompanyName TEXT, ContactName TEXT ); INSERT INTO Customers (CustomerID, CompanyName, ContactName) VALUES (1, 'Alfreds Futterkiste', 'Maria Anders'), (4, 'Around the Horn', 'Thomas Hardy'), (11, 'Bs Beverages', 'Victoria Ashworth'), (13, 'Bs Beverages', 'Random Name'), (42, 'The Answer', NULL); DROP TABLE IF EXISTS Test; CREATE TABLE IF NOT EXISTS Test ( id INTEGER PRIMARY KEY, text TEXT, real REAL, int INTEGER, boolean BOOLEAN, blob BLOB ); DROP TABLE IF EXISTS PrismaTest; CREATE TABLE IF NOT EXISTS PrismaTest ( id INTEGER PRIMARY KEY, date TEXT, bigint INTEGER, decimal TEXT ); DROP TABLE IF EXISTS "Post"; DROP TABLE IF EXISTS "User"; CREATE TABLE "User" (id INTEGER PRIMARY KEY); CREATE TABLE "Post" ( id INTEGER PRIMARY KEY, "authorId" INTEGER NOT NULL, title TEXT NOT NULL, FOREIGN KEY ("authorId") REFERENCES "User"(id) );

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