Manage your Prisma schema, run migrations, execute queries with Prisma Client, and interact with Prisma Postgres directly from Claude Code.
Prisma is the most popular TypeScript ORM, providing a type-safe query builder, a schema migration system, and Prisma Postgres — a serverless database with built-in connection pooling and a global cache. The Prisma MCP connects Claude Code to the Prisma platform API and your database, enabling it to manage schemas, run migrations, execute queries through Prisma Client, and interact with Prisma's cloud services.
mcpizy install prisma
Provide your database connection URL and, optionally, a Prisma Cloud API key for platform features. The MCP detects your existing schema.prisma file automatically.
prisma migrate dev and prisma migrate deploy with full output.prisma db pull.Add a new model and migrate your development database:
// Claude will:
// 1. Edit schema.prisma to add the new model
// 2. Run "prisma migrate dev --name add_audit_log"
// 3. Show the generated SQL migration
// 4. Confirm the migration was applied successfully
// 5. Generate updated TypeScript types with "prisma generate"
prisma migrate dev in development — it creates named migration files in version control, unlike db push.