
Prisma Cli Studio
- 14 installs
- 8 repo stars
- Updated February 9, 2026
- prisma/cursor-plugin
prisma-cli-studio opens a visual Prisma database browser.
About
The prisma-cli-studio skill covers prisma studio launching a local web GUI defaulting to port 5555. Options set --port, --browser, config path, or --url overrides. BROWSER=none avoids auto-open on remote servers. Features include paginated table views, multi-condition filters, inline create update delete with confirmation, and relation navigation with counts. Workflow runs migrate dev, db seed, then studio to verify fixtures. Limitations stress development-only use, no advanced queries, and direct database access requiring trusted networks. Security note warns against public exposure since Studio grants full configured database access. Starts web GUI on default port 5555. Browse, filter, sort, and paginate model records. Inline create, update, and delete with confirmation. Navigate relations and view related counts. Development-only tool, not for production exposure. Running Studio session for viewing and editing dev data. User opens prisma studio to inspect or edit records.
- Starts web GUI on default port 5555.
- Browse, filter, sort, and paginate model records.
- Inline create, update, and delete with confirmation.
- Navigate relations and view related counts.
- Development-only tool, not for production exposure.
Prisma Cli Studio by the numbers
- 14 all-time installs (skills.sh)
- Ranked #604 of 911 Databases skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
prisma-cli-studio capabilities & compatibility
- Capabilities
- studio features list · common workflow with migrate and seed · security limitations
- Use cases
- database · debugging
What prisma-cli-studio says it does
Opens a visual database browser
npx skills add https://github.com/prisma/cursor-plugin --skill prisma-cli-studioAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 14 |
|---|---|
| repo stars | ★ 8 |
| Last updated | February 9, 2026 |
| Repository | prisma/cursor-plugin ↗ |
How do I browse Prisma database records in a GUI?
Open Prisma Studio browser GUI to browse, filter, edit, and navigate related database records.
Who is it for?
Developers verifying migrations, seeds, or debugging data state.
Skip if: Skip for production data access or advanced SQL reporting.
When should I use this skill?
User opens prisma studio to inspect or edit records.
What you get
Running Studio session for viewing and editing dev data.
Files
prisma studio
Opens a visual database browser for viewing and editing data.
Command
prisma studio [options]What It Does
- Starts a web-based database GUI
- View all your models and records
- Create, update, and delete records
- Filter and sort data
- Navigate relations
Options
| Option | Description | Default |
|---|---|---|
--port / -p | Port to start Studio on | 5555 |
--browser / -b | Browser to open Studio in | System default |
--config | Custom path to your Prisma config file | - |
--url | Database connection string (overrides the one in your Prisma config) | - |
Examples
Open Studio
prisma studioOpens at http://localhost:5555
Custom port
prisma studio --port 3000Specific browser
prisma studio --browser firefoxDon't open browser
BROWSER=none prisma studioUseful for remote servers.
Features
View Records
- See all records in table format
- Pagination for large datasets
- Column sorting
Filter Data
- Filter by any field
- Multiple conditions
- Relation filtering
Edit Records
- Click to edit inline
- Add new records
- Delete records (with confirmation)
Navigate Relations
- Click relations to view related records
- See counts of related items
- Follow relation links
Use Cases
- Development: Quick data inspection
- Debugging: Check data state
- Testing: Verify seed data
- Demo: Show data to stakeholders
Limitations
- Development tool only
- Not for production use
- Limited to configured database
- No advanced queries (use Prisma Client for that)
Common Workflow
1. Run migrations:
prisma migrate dev2. Seed data:
prisma db seed3. Open Studio to verify:
prisma studio4. Make manual edits if needed
Security Note
Studio provides direct database access. Only run on:
- Local development machines
- Secure internal networks
- Never expose publicly
{
"name": "prisma-cli-studio",
"version": "7.0.0",
"author": "prisma",
"license": "MIT"
}Related skills
FAQ
What does prisma-cli-studio do?
prisma-cli-studio opens a visual Prisma database browser.
When should I use prisma-cli-studio?
User opens prisma studio to inspect or edit records.
Is this skill safe to install?
Review the Security Audits panel on this page before installing in production.