mcpbeat Sign in

Prisma CLI Studio Skill for Cursor

prisma studio. Reference when using this Prisma feature.

578 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
8
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/prisma/cursor-plugin --skill prisma-cli-studio

What comes with it

97 bytes besides the instruction
metadata.json

The instruction itself

18 sections, as written by the author

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 studio

Opens at http://localhost:5555

Custom port

prisma studio --port 3000

Specific browser

prisma studio --browser firefox

Don't open browser

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)
  • 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

  • Run migrations:
   prisma migrate dev
  • Seed data:
   prisma db seed
  • Open Studio to verify:
   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

How to use it

Copy the folder

Take prisma/prisma-cli-studio from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.