Issue · Query · Analyse · Share

The MongoDB
workspace that reads like prose.
Runs like a terminal.

MongoQUI is a single desktop app for engineers who treat MongoDB as production infrastructure. Query with an editor. Ask in English. Build dashboards. Share them, password-protected, with the rest of the company — without ever opening a BI tool.

10×
faster than shell
45k+
AI queries / month
99.9%
control-plane uptime
mongoqui · ai-assistant
~/prod-analytics > ask
"top 10 customers by spend last quarter"
// generated · validated
db.orders.aggregate([
  { $match:{ createdAt:{ $gte: ISODate("2026-01-01") }}},
  { $group:{
      _id: "$customerId",
      total: { $sum: "$amount" },
      orders:{ $sum: 1 }
  }},
  { $sort:{ total:-1 }},
  { $limit: 10 }
])
10 rows · 142ms · saved to Q1 Report
$
shareable report
Q1 · revenue · 🔒 password
v0.1.0 shippedAI Report Assistant · newPassword-protected sharesDuckDB Report BuildermacOS · Windows · LinuxSOC 2-ready controlsLocal-first · offlineShared connections RBACv0.1.0 shippedAI Report Assistant · newPassword-protected sharesDuckDB Report BuildermacOS · Windows · LinuxSOC 2-ready controlsLocal-first · offlineShared connections RBAC
In production at
Teams you’ve
heard of.
Techcorps
DataSystems
CloudStack
DevTools
AI.LABS
Manifesto · Six beliefs

We didn’t build another MongoDB GUI.
We built the workspace we always wished existed.

01

Engineers first. Always.

Keyboard-driven. Native desktop speed. A real Monaco editor for aggregations, a proper shell for ad-hoc work, and SQL→Mongo translation when you need to hand-hold a teammate.

02

AI that earns its keep.

The Assistant reads your schema before writing a query, runs it against a dry-run safety gate, and explains the result in plain English. It’s not a chatbot. It’s a second pair of hands.

03

Dashboards, without the BI tax.

Turn any query into a Parquet-backed report. Re-run on new data. Share the link. Password-protect it. Revoke on a whim. No Tableau, no Looker, no extra invoice.

04

Teams, finally a first-class idea.

Shared connections. Shared folders. Shared saved queries. Shared reports. Each with role-based access and an audit log. Your junior engineer never sees the prod password.

05

Security that doesn’t get in the way.

Argon2 master password on-device. JWT-scoped org access. Per-share password links with expiry. Device-bound sessions. Full audit log. SOC 2-ready controls.

06

Local-first, cloud when you want it.

Your queries run on a local Python sidecar and never leave your machine. Turn on cloud sync to collaborate. Same keyboard shortcuts. Same UI. Same you.

03 · Capabilities

A tool for every shape of data work.

Most MongoDB tools give you a table view and a query box. MongoQUI gives your engineering team an entire toolkit, designed so the right surface is always one keystroke away.

Aggregation Builder
live editor
// $lookup + $group + $sort
db.users.aggregate([
  { $match:   { status: "active" } },
  { $lookup:  {
      from:          "orders",
      localField:    "_id",
      foreignField:  "userId",
      as:            "orders"
  }},
  { $addFields: { ordersCount: { $size: "$orders" } } },
  { $sort:     { ordersCount: -1 } },
  { $limit:    25 }
])
16 stage typesMonaco · IntelliSense
AI Assistant
schema-aware

Describe what you need. Get a validated MongoDB query back in seconds.

gpt-4 · claude · gemini
Schema Inference
auto
_id
99%
email
98%
plan
94%
preferences
62%
IntelliShell
mongosh · compiled
prod> db.users.find({ plan: "enterprise" }).count()
1428
prod> db.orders.getIndexes()
[ customerId_1, createdAt_-1, total_1 ]
prod>
Teams & RBAC
cloud-sync
AAda LovelaceAdmin
GGrace HopperEditor
LLinus TorvaldsViewer
Sharing
password · expiry
share.mongoqui.com/r/
q1-revenue-dashboard-7hQ3zA
password· expires in 7 days
SQL → MongoDB
8 languages
sql
SELECT id, total FROM orders
WHERE status = 'paid';
mongodb
db.orders.find({status:"paid"}, {id:1, total:1})
04 · AI Assistant · new

Ask in English.
Ship production
queries.

The Assistant reads your collection schema, understands your intent, and writes validated MongoDB aggregations, then visualises the result and drops it in a shareable dashboard.

  • Schema-aware · never invents fields
  • Explains slow queries via $explain
  • Safe-mode dry-run before writes
  • BYO OpenAI / Anthropic / Gemini key
See every AI feature
ai-assistant.session
claude-opus-4-7safe-mode on
YOU

What’s our 30-day retention rate, broken down by signup source? Sort worst to best.

AI
// reads schema: users, events
db.users.aggregate([
  { $match: { createdAt: { $gte: ISODate("2026-03-20") } } },
  { $lookup: {
      from: "events",
      localField: "_id",
      foreignField: "userId",
      as: "events"
  }},
  { $addFields: {
      retained: { $gt: [ { $size: "$events" }, 0 ] }
  }},
  { $group: {
      _id: "$source",
      signups:  { $sum: 1 },
      retained: { $sum: { $cond: [ "$retained", 1, 0 ] } }
  }},
  { $project: {
      source: "$_id",
      rate:   { $divide: [ "$retained", "$signups" ] }
  }},
  { $sort: { rate: 1 } }
])
paid-social
24%
search
41%
organic
62%
referral
78%
Paid-social retains at 24% vs referral at 78%. Consider redirecting Q2 spend to referral programs.
ready⌘ + K
NA · $482K · +18%EU · $318K · +12%APAC · $241K · +24%LATAM · $126K · +6%Retention · 62%NPS · 58CAC · $184LTV · $2,340NA · $482K · +18%EU · $318K · +12%APAC · $241K · +24%LATAM · $126K · +6%Retention · 62%NPS · 58CAC · $184LTV · $2,340
05 · Report Builder · new

Dashboards your CEO
will actually read.

The MongoQUI Report Builder turns any aggregation into a Parquet- backed, BI-grade dashboard. Re-run. Schedule. Share via link. Password-protect. All without leaving the app.

report
Q1 · 2026 · Global revenue overview
weekly revenue
$1.28M
+18.4%
J
F
M
A
M
J
J
A
S
O
N
D
by region
North America$482K
+18% QoQ
Europe$318K
+12% QoQ
Asia Pacific$241K
+24% QoQ
LATAM$126K
+6% QoQ
Revenue
$1.28M
+18.4%
New customers
412
+9.2%
Churn
2.1%
-0.4%
AOV
$184
+3.1%
The Report Builder finally made our data team stop forwarding screenshots in Slack.
Jasil OP · DevOps Engineer · Sanar
Re-run with one click

Every report is a live pipeline. Click re-run after new data lands. Charts, KPIs and shared links refresh instantly.

Shareable viewer

Generate a clean, read-only URL. No install required. Your stakeholders open it in a browser and see the latest numbers.

Password-protect anything

Lock any link with a password and an expiry date. Revoke access in one click. Your finance team will love you.

Try the Report Builder
06 · Sharing & Security

Collaborate freely.
Stay in control.

MongoQUI treats MongoDB as production infrastructure. Every share, every action, every session is scoped, logged and revocable. By design.

audit log · live
org: ledgerly · streaming
17:24:03AUDITshare.revoke · report_7hQ3zA · actor: ada@co
17:23:41AUTHsession.refresh · device_id: mbp-linus
17:22:58SHAREpassword.verify · 200 · viewer_ip: 192.0.2.88
17:22:17RBACaccess.denied · editor attempted export() on billing
17:21:52AUDITteam.invite · grace@co as Editor by ada@co
17:21:09AUTHlogin.success · mfa=true · org: ledgerly
17:20:44SHARElink.created · q1-revenue · expires in 7d · pwd=set
17:19:58RBACrole.update · linus@co demoted to Viewer
tail -f · 142 events today● healthy
public share
active
share.mongoqui.com / r /
q1-revenue-7hQ3zA
Password••••••••••
Expiresin 7 days
Viewersfinance-team · 4
Watermarkviewer email
AES-256 at rest
TLS 1.3 in transit
SOC 2-ready
Argon2id master
· new
Password-protected shares

Every public report and shared connection can require a password and an expiry. Revoke access in one click.

· new
Action-level permissions

Gate sensitive buttons (export, delete, re-run) behind elevated role checks. No accidental prod writes.

Team RBAC

Invite your team, assign admin / editor / viewer roles, and share connections without sharing credentials.

Argon2 master password

A local master password encrypts every saved credential on-device. A stolen laptop can’t read them.

Session & device control

Per-device session tokens, org-scoped JWTs and a full audit log of every sign-in, export and share.

Offline by default

Queries never leave your machine unless cloud sync is enabled. Air-gapped environments supported.

07 · How it works

From connection string
to shared dashboard in four steps.

01

Connect

SRV · TLS · X.509 · AWS IAM

Paste a Mongo URI or import an Atlas connection. MongoQUI detects replica sets, shards, indexes and auto-infers every collection’s schema in seconds.

02

Ask

AI · Shell · Visual Builder

Write aggregations by hand in a Monaco editor, or ask the AI Assistant to draft one from plain English. Every query is dry-run before it touches prod.

03

Analyse

Reports · Charts · Pivots

Turn results into charts, pivots and KPIs inside the Report Builder. Backed by DuckDB on Parquet: BI-grade speed without a warehouse.

04

Share

Links · Passwords · RBAC

Publish a report with one click. Lock the link with a password. Assign viewers. Revoke access when the quarter closes.

08 · By the numbers

A measurable win for every engineer on your team.

10×
faster

Shell-grade operations complete in a fraction of the time thanks to a compiled Python sidecar and keyboard-first UX.

60%
less typing

The AI Assistant drafts aggregations, $lookups and indexes, so engineers write business logic, not boilerplate.

45k+
queries / mo

MongoQUI teams run tens of thousands of AI-drafted queries every month in production, validated, safe-mode first.

99.9%
control-plane

Our Cloudflare-backed control plane has sustained 99.9% uptime for the last twelve months running.

10 · Pricing

Transparent pricing.
No seat-count surprises.

Three plans. Simple per-seat billing, billed yearly. Every plan includes unlimited local connections, replica-set support and a 14-day free trial.

Basic
Solo developers · freelancers
$119/ seat · year

Everything an individual engineer needs to query MongoDB with speed and confidence.

Start free trial
What’s included
  • Visual Query Builder (basic)
  • Aggregation Pipeline Builder (16 stages)
  • IntelliShell · Monaco raw query editor
  • Tree · JSON · Table document viewers
  • JSON / CSV / Excel import & export
  • Query history · saved queries
  • Replica set · DNS seedlist · SSL/TLS
  • Export current query as code · 8 languages
  • Basic index management
  • Dark theme · keyboard shortcuts
  • Local-first · fully offline
most popular
Pro
Startup & scale-up teams · 3–10 seats
$229/ seat · year

AI, advanced tooling and team collaboration for growing engineering teams.

Start free trial
What’s included
  • Everything in Basic
  • AI Query Generator · find + aggregation
  • AI context configuration · schema-aware
  • Visual Aggregation Designer (drag & drop)
  • Advanced Visual Query Builder · $lookup
  • Schema analyzer · dynamic index recs
  • BSON import / export · field mapping
  • Import plan generation · preview
  • Export field selection · scope control
  • Bulk copy / drop collections · batch delete
  • Active cursor streaming export
  • Shared connections · team roles · 2FA
  • Sharded cluster support
  • mongosh desktop integration
Ultimate
Platform teams · regulated workloads
$399/ seat · year

Unlimited everything plus MongoDB RBAC for regulated, enterprise-scale workloads.

Talk to sales
What’s included
  • Everything in Pro
  • MongoDB RBAC management · role editor
  • Unlimited tabs · concurrent ops · queries
  • Unlimited saved queries · query history
  • Unlimited AI generation tokens
  • Unlimited import volume · export docs
  • Unlimited team members · seats
  • Unlimited shared connections
  • Priority support · 4-hour SLA
  • Dedicated Slack channel · named CSM
  • Custom volume pricing available
limits
Tabs
10
25
Unlimited
Saved queries
25
Unlimited
Unlimited
Query history
50
Unlimited
Unlimited
Concurrent ops
5
15
Unlimited
Import size
100 MB
1 GB
Unlimited
Export docs
10,000
Unlimited
Unlimited
Shared connections
3
Unlimited
Unlimited
Team members
3
10
Unlimited
AI tokens / month
10,000
100,000
Unlimited
Report refresh rate
Daily
Hourly
On-demand

Need SSO, on-prem or custom volume pricing? Talk to sales →

09 · On the record
We replaced Compass, Studio 3T and a Metabase instance with MongoQUI. Our analytics velocity on MongoDB data doubled in a month. Our CFO finally stopped asking for "the spreadsheet version."
Reference no. 01 / 04
Rupam Wadia · Sr Fullstack Developer · Maren Solutions
11 · Frequently asked

Answers to the things
engineers actually ask.

Can’t find what you need? Send us an email at hello@mongoqui.com and a real engineer will reply.

Compass is a decent free GUI, but it stops at queries. Studio 3T is powerful but clunky, paywalled and has no native AI. MongoQUI gives you a modern GUI, an AI query assistant, a BI-grade Report Builder and team features (shared connections, RBAC, password-protected share links) in one focused app.
12 · Install

Free forever
for every engineer.

No credit card. No email wall. Install MongoQUI and start querying your databases in under 60 seconds.

platform
macOS
architecture
Apple Silicon + Intel · 12+
file · universal build
MongoQUI.app.tar.gz
Download
platform
Windows
architecture
x86_64 · 10 / 11
file · signed installer
MongoQUI_0.1.0_x64-setup.exe
Download
platform
Linux
architecture
x86_64 · Debian · Ubuntu · Fedora · Arch
file · AppImage
MongoQUI_0.1.0_x86_64.AppImage
Download
Launch the web app What’s new v0.1.0 · released Apr 2026
13 · Ready when you are

Give your team a MongoDB workspace worth signing into.

Free to start. No credit card. Installed and querying in under a minute. Your next “where are all the NULLs” investigation goes from 10 minutes to 10 seconds.

Download MongoQUILaunch the web appbrew install mongoqui · coming soon