{age: {$gte: 18}} fails with a parse error. Collections appear as tables in the sidebar, with top-level fields as columns and nested objects as formatted JSON.
The driver is not in the app. Picking in the Choose a Database sheet offers the
download before the form opens, and opening a saved connection installs it without asking.
Settings > Plugins > Browse > installs it up front. See Plugins.
Quick setup
1
Create Connection
Click Create Connection…, select MongoDB, and enter hosts and credentials
2
Test Connection
Click Test Connection to verify, then Save & Connect
Connection settings
Naming a Database skips listing every database on the server, which is worth doing on a cluster with hundreds. Leave it empty and the first non-system database opens instead.
Cmd+K switches either way, on the same connection, with no reconnect.
Auth Database is a separate question: it says where your account is defined, not what you browse. Left empty, it follows the Database field. An account defined in admin needs Auth Database set to admin whenever Database names something else, or authentication fails. SRV connections authenticate against admin regardless, unless told otherwise. Switching databases in the app never changes it, so browsing a database your user has no account in is fine.
Also in Advanced: Read Preference, Write Concern, Use SRV Record, Replica Set name, and Legacy UUID Encoding. There is no minimum server version; the driver adapts what it asks for to what the server answers.

MongoDB connection form
listDatabases privilege still sees what it can read. On an older server that list comes back empty: name a Database on the connection instead.
Connection URL
mongodb+srv:// resolves hosts through DNS SRV records and takes no port; one pasted into the field is stripped before connecting. Plain mongodb:// keeps whatever port you give it. See Connection URL Reference.
MongoDB Atlas (SRV)
An Atlas connection needs the cluster hostname, a username, and a password. Atlas requires SRV and TLS, so a host ending in.mongodb.net gets both turned on for you, TLS only if the SSL mode was still Disabled. Elsewhere the Use SRV Record toggle in Advanced does the same job. Add your current IP to the cluster’s access list in the Atlas console first: traffic from an address that is not on it times out rather than failing.
Replica sets
The Hosts field takes comma-separated pairs (host1:27017,host2:27017,host3:27017), the primary is discovered, and writes are routed to it. Set the replica set name in Advanced. A multi-host URI pastes in directly:
Browsing collections
Click a collection to page through its documents. Column layout is inferred by sampling documents, not read from a validator, so a field missing from the sample gets no column. ObjectIds render as strings, arrays and nested objects as formatted JSON. The filter bar’s column picker lists paths inside nested objects and arrays of objects, socustomer.country and items.sku filter directly; a row on an array field chooses any element or same element, which makes one array entry satisfy every row set to it. See Filtering. A field name containing a literal dot is left out of the picker, since MongoDB reads a dot as a path separator; reach it with $getField inside $expr.
The Structure tab lists a collection’s indexes; create and drop them from a query tab with db.users.createIndex({"email": 1}) and db.users.dropIndex("email_1"). New Database asks for a database name and a first collection, both required. New View opens a query tab holding a db.createView("view_name", "source_collection", [pipeline]) template, and editing a view pre-fills db.runCommand({"collMod": …}).
Binary UUIDs
A binary subtype 4 field renders asUUID("8cd003eb-4a25-4324-9332-88fce2da0d1a"). Subtype 3 is the legacy format, and its bytes do not say which driver wrote them, so it stays BinData(3, "…") until Legacy UUID Encoding on the connection is set to Java, C#, or Python. Match it to the driver that wrote the data: the wrong choice shows a valid-looking but wrong UUID.
Once set, the value renders as LegacyJavaUUID("…") and reads that way everywhere, filters and MQL export included. Nothing stored is rewritten, uuidRepresentation=javaLegacy in a pasted URL sets the same option, and a change takes effect on the next connect.
Writing MQL
Every key is quoted, and the editor has no comment syntax, so a// line becomes part of the statement. Value constructors are translated, so a value copied out of the grid pastes straight into a filter: ObjectId, ISODate, Date, NumberInt, NumberLong, NumberDecimal, Timestamp, BinData, HexData, MinKey, MaxKey, UUID, and the legacy UUID names. Anything else JavaScript, including new Date(), arithmetic, and regex literals such as /abc/i, is not evaluated.
Collection references
db.users, db["users"], or db.getCollection("users"). The last two take the name exactly as written, so use them for names with dots or spaces, names starting with a digit, and names that collide with a database method such as stats.
Chained methods
.sort(), .limit() and .skip() chain onto find and onto aggregate, where they become $sort, $skip and $limit stages appended in that order. Chaining onto something that returns no cursor, such as insertOne, is an error, as is a method the parser does not know.
Write options
updateOne, updateMany, replaceOne and findOneAndUpdate take a third options document, and upsert, arrayFilters and hint reach the server. The result reports modifiedCount and upsertedCount.
Supported methods
Collection-levelfind, findOne, aggregate, countDocuments/count, insertOne/insertMany, updateOne/updateMany, replaceOne, deleteOne/deleteMany, findOneAndUpdate/findOneAndReplace/findOneAndDelete, createIndex, dropIndex, drop; database-level getCollectionNames/listCollections, createCollection, dropDatabase, version, stats. Anything else goes through db.runCommand({…}) or db.adminCommand({…}). An unlisted shell method such as distinct or getUsers returns an unsupported-method error.
Cmd+Option+E explains a statement, converting find, aggregate, countDocuments, update, delete, and findOneAnd* calls into db.runCommand({"explain": …, "verbosity": "executionStats"}). Cmd+Shift+F reformats by nesting depth. Autocomplete offers collections, methods, nested field paths such as address.city, and the $ operators valid at the cursor; see Autocomplete.
SSL/TLS
New connections default to Disabled, and the driver has no TLS fallback: Preferred behaves exactly as Required, which is what the SSL pane warns about. For an unencrypted local instance use Disabled or SSH tunneling. See SSL/TLS.Limitations
- A row with no
_idcannot be updated or deleted. The save is skipped rather than matched on the remaining fields. Keep_idin the projection so every row carries one. _idis read-only in the grid, and left out of an insert entirely so the server generates it. To choose your own, insert withdb.collection.insertOne({…}).- Transactions are not exposed. Statements always run standalone, on any topology.
- Nested paths filter but do not sort. Sorting works on the grid’s own columns.
- same element covers a field one array deep. A path through an array inside another array needs nested
$elemMatch, so those filter with dot notation only. - GridFS buckets are not browsable, and change streams are unsupported.
db.getSiblingDB(…)is not supported. A query runs against the database the connection is on; switch withCmd+K.
Troubleshooting
Connection refused: check MongoDB is running (brew services start mongodb-community) and that the port and bindIp in mongod.conf match what you entered.
Authentication fails on connect: the error names the database that was authenticated against. If your user does not live there, set Auth Database in Advanced; otherwise check the username, password, and auth mechanism. The MQL editor does not parse db.getUsers() or db.createUser(); read users with db.runCommand({"usersInfo": 1}).
Timeout: for Atlas, add your IP to the cluster’s access list first. Otherwise verify host and port and check the network and firewall.
A collection is slow to open: a sort or filter on an unindexed field makes MongoDB read every document, even for 20 rows. Check the Structure tab for an index on that field. Cmd+. stops the query on the server.
The row total shows ~: that is the instant estimate from collection metadata. The automatic count is capped at 5 seconds and keeps the estimate if the server is slower; Count Exactly runs a real count against your query timeout. Views and time-series collections have no metadata count, so their estimate can be missing altogether.

