We’ve been hard at work improving Mongoose Studio - not just as a MongoDB GUI, but as a tool for actually understanding what your data means.

Most database tools stop at showing you rows and fields. Our goal is to go further: help you turn raw documents into something you can read, reason about, and act on.

If you try anything below and have thoughts - good or bad - I want to hear it.
Jump into Discord or open a GitHub issue. I read everything, and a lot of these features come directly from user feedback.

📊 Smarter Tables + Projections

Less noise, more signal.

Working with large MongoDB collections can get messy fast - too many fields, too much data, not enough clarity.

Mongoose Studio now introduces projections and smarter default columns:

  • Automatically shows the first few fields in your schema

  • Add/remove columns directly from the table UI

  • Toggle projections on/off with a single click

  • Optional row numbers for easier scanning

Instead of dumping raw documents, Mongoose Studio now helps you focus on what actually matters.

Brief aside: Mongoose Studio displays your fields in the order they are defined in your schema. If there’s certain fields in your schema that you want to see first, move them earlier in your schema definition.

🕒 Dates That Actually Make Sense

No more mental timezone math. No guessing whether an ISO string was 4 days ago or whether a date is during business hours in Singapore. Mongoose Studio now gives you full control over how dates are displayed:

  • UTC (ISO string)

  • Local browser time

  • Unix timestamps (ms + seconds)

  • Relative time (“5 minutes ago”)

  • Any IANA timezone (e.g. America/New_York or Europe/London)

You can switch formats instantly, per field.

This makes it dramatically easier to answer questions like:

  • “When did this actually happen?”

  • “How recent is this data?”

  • “What does this look like in another timezone?”

📈 CSV Exports for All Tables

Spreadsheets are the duct tape that holds the business world together. And Mongoose Studio just made it even easier to export the data you’re looking at as a spreadsheet. Tables in dashboards and chat tab now have a 3-dot menu with a “Download as CSV” option.

  • Download any table as CSV

  • Works directly from dashboards and chat tab

  • Safely escapes values to prevent formula injection

The goal: make it easy not just to explore data - but to share it.

More coming soon 👀

Keep reading