AI tools
In this section
Scaffold a new Prisma project with a new database using the prisma init --prompt
command:
npx prisma init --prompt "Simple habit tracker application"
This will generate a Prisma schema based on the prompt and deploy it to a fresh Prisma Postgres instance.
Cursor
Cursor is an AI-powered code editor designed to boost productivity by automating repetitive coding tasks. When paired with Prisma, a robust and type-safe toolkit for database workflows, it becomes a powerful solution for managing and optimizing database schemas, queries, and data seeding.
Tabnine
Tabnine is a an AI software development platform that comes as an extension for your IDE (e.g. VS Code, WebStorm, IntelliJ, ...).
Prisma MCP server
Prisma provides its own Model Context Protocol (MCP) server that lets you manage Prisma Postgres databases, model database schemas and chat through migrations. Learn more about it here.