Labsco
prisma logo

prisma-cli-studio

✓ Official8

by prisma · part of prisma/cursor-plugin

prisma studio. Reference when using this Prisma feature.

🔥🔥FreeQuick setup
🧩 One of 7 skills in the prisma/cursor-plugin package — works on its own, and pairs well with its siblings.

prisma studio. Reference when using this Prisma feature.

Inspect the full instructions your agent will receiveExpand

This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.

by prisma

prisma studio. Reference when using this Prisma feature. npx skills add https://github.com/prisma/cursor-plugin --skill prisma-cli-studio Download ZIPGitHub8

prisma studio

Opens a visual database browser for viewing and editing data.

Command

Copy & paste — that's it
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

Copy & paste — that's it
prisma studio

Opens at http://localhost:5555

Custom port

Copy & paste — that's it
prisma studio --port 3000

Specific browser

Copy & paste — that's it
prisma studio --browser firefox

Don't open browser

Copy & paste — that's it
BROWSER=none prisma studio

Useful 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

Common Workflow

Run migrations:

Copy & paste — that's it
prisma migrate dev

Seed data:

Copy & paste — that's it
prisma db seed

Open Studio to verify:

Copy & paste — that's it
prisma studio

Make manual edits if needed

Security Note

Studio provides direct database access. Only run on:

  • Local development machines

  • Secure internal networks

  • Never expose publicly