Install the Windows x64 build
MongoG is distributed for Windows as an x64 .exe installer. Use it on a supported 64-bit Windows system; there is no ARM or 32-bit Windows package advertised by MongoG. The primary download route always selects the newest published Windows build, while the release-history page provides pinned downloads and release notes for earlier versions.
After installation, create a connection profile instead of placing a credentialed MongoDB URI in a script. Profiles keep connection context separate from query source and encrypt saved secrets with operating-system secure storage. This makes saved scripts and history safer to review, reuse, or share after sensitive values have been excluded.
Connect to local MongoDB or Atlas
A local Community server, a remote deployment, and MongoDB Atlas all use the same connection workflow. For Atlas, add the current network to the project's access list and create a database user with appropriate roles. For self-managed servers, confirm DNS, firewall, VPN, replica-set member addresses, and TLS trust before changing client options.
MongoG exposes advanced driver-compatible settings for authentication, TLS, read preferences, and timeouts. A permanent certificate-verification bypass is not a reliable fix for a certificate problem. Diagnose the trust chain and use a configuration that matches the server.
See Connect MongoG to MongoDB for safe URI shapes and troubleshooting steps.
Combine a collection viewer with real scripts
The collection workspace handles bounded paging, filtering, inspection, inserts, replacements, and deletes. It is useful when you need to understand the current data shape or make a deliberate single-document change. The Query view is better for an aggregation, bulk mutation, transaction, or repeatable investigation.
Query tabs expose real MongoDB Node.js driver objects. Typed completions cover methods and options, while sampled fields help with paths in the active collection. Selected-statement execution lets you test one part of a larger script, and automatic await keeps routine driver calls readable without hiding explicit concurrency.
Results preserve BSON-specific values such as ObjectId, dates, decimals, integers, binary data, arrays, and nested documents. Cursors are paged so a query does not need to materialize every matching document in application memory.
Investigate performance and operations
MongoG includes dedicated views for indexes, explain plans, bounded global search, change streams, and GridFS. Use the Explain view to compare returned documents with examined documents and keys. Use the Indexes view to inspect existing definitions before adding or removing an index. Change streams require a replica set or sharded cluster, including compatible Atlas deployments.
Read-only profiles disable supported MongoG mutations, but server roles remain the final security control. Use a least-privilege database account when inspecting production data.
Share workflows across a mixed-platform team
MongoG uses the same query model and documentation on Windows, macOS, and Linux. A Windows developer can share a driver script with a teammate using a Mac without translating it to a product-specific query language. Keep environment-specific database names and credentials out of the shared source, then select the intended connection and database before execution.
Start with the MongoDB desktop client overview, work through MongoDB query examples, or compare the workflow with MongoDB Compass, Studio 3T, and NoSQLBooster.