This extension enables you to manage Prisma Postgres databases and Prisma ORM workflows from within Claude Desktop.
- Prisma-Postgres-account-status: Check authentication and connection status
- Create-Prisma-Postgres-Database: Create new Prisma Postgres databases
- Prisma-Login: Sign in to Prisma Console for cloud features
- migrate-status: Check the status of your database migrations
- migrate-dev: Create and apply database migrations in development
- migrate-reset: Reset the database and apply all migrations
- Prisma-Studio: Launch Prisma Studio to visually browse and edit your database
- Node.js 20.0.0 or higher
- Claude Desktop 0.10.0 or higher
- Download the latest
.dxtfile from the releases - Install in Claude Desktop through the Extensions menu
- Start using Prisma tools directly in your conversations
To build this extension from source:
# Install dependencies
cd server
npm install
# Pack the extension
npx @anthropic-ai/dxt packThis generates a mcp.dxt file containing the complete extension bundle.
This is a zip file containing the entire project in server, including the node_modules folder
This project includes an automated release workflow that can be triggered manually:
- Go to the "Actions" tab in the GitHub repository
- Select "Build and Publish DXT (latest)" workflow
- Click "Run workflow"
- Fill in the input fields:
- Version bump: Choose between
patch,minor, ormajorversion increments - Release notes: Add custom notes to be included in the release (optional)
- Mark as pre-release: Check this option to mark the release as a pre-release
- Version bump: Choose between
- Click "Run workflow" to start the build and release process
The workflow will:
- Build the DXT package
- Generate a semantic version based on your selection
- Create a GitHub release with the DXT file
- Include commit history and your custom notes in the release
MIT License - see LICENSE for details.