A native MongoDB workbench for macOS.
Browse, query, edit, analyze, and move data without Electron or web views.
Website · Download · Nightly · Contribute
OpenMango puts the tools used in day-to-day MongoDB work into one fast, keyboard-friendly desktop app. Its interface is written in Rust with GPUI and rendered natively on the GPU—there is no browser runtime between you and your data.
| Area | What you can do |
|---|---|
| Documents | Browse in tree or table view, filter, sort, project, paginate, edit inline or as JSON, and run guarded bulk operations. |
| Queries | Build aggregation pipelines, inspect schemas and explain plans, use mongosh-compatible Forge, and save or restore work from the Query Library. |
| Data movement | Import JSON, NDJSON, CSV, or BSON; export those formats plus Excel; copy between collections or databases with progress and cancellation. |
| Connections | Use direct or SRV connections, SSH tunnels, and SOCKS5 proxies. Import and export connection profiles in redacted or encrypted form. |
| AI (optional) | Ask MongoDB-aware questions with Gemini, OpenAI, Anthropic, or Ollama; review tool calls and control whether document samples are shared. |
| Workspace | Restore tabs and connections, use a command palette and keyboard shortcuts, choose from 13 themes, and check for verified updates in-app. |
- Open the latest release.
- Download the ZIP for your Mac:
macos-arm64for Apple Siliconmacos-x86_64for Intel
- Unzip it and move
OpenMango.appto/Applications.
Stable builds are signed and notarized. Each release also includes a SHA-256 checksum. OpenMango can download the matching update in the background, verifies its checksum, and installs it only after you choose Restart to update.
Want current development builds? Use the nightly release; nightly builds may be unstable.
- Open the connection manager with the + button.
- Add a
mongodb://ormongodb+srv://connection string and test it. - Connect, then choose a database and collection from the sidebar.
- Browse documents or open Aggregation, Schema, Explain, Forge, or the Query Library for deeper work.
For AI features, open Settings, enable AI, and choose a provider. Remote-provider keys can be entered in the app; Ollama is supported without an API key.
- Connection credentials and AI API keys are stored in macOS Keychain, not in the JSON configuration files.
- Per-connection read-only mode blocks app-owned writes, including writes initiated through AI and Forge.
- Destructive actions use confirmations and revalidate their target before execution.
- Imports, copies, and exports stage their output so failure or cancellation does not silently replace existing data or files.
- AI document sharing is opt-in: selected-document and automatic sample sharing are disabled by default.
- Settings can export a redacted support bundle without connection secrets.
| Layer | Location | Responsibility |
|---|---|---|
| Native UI | src/app/, src/views/, src/components/ |
GPUI shell, screens, dialogs, editors, and shared controls |
| State and actions | src/state/ |
Workspace state, commands, persistence, query library, and updater |
| MongoDB access | src/connection/ |
Driver operations, transfers, SSH tunnels, SOCKS5 transport, and BSON tools |
| Forge shell | tools/forge-sidecar/ |
Bun/TypeScript sidecar for mongosh-compatible execution and completion |
| Assets and themes | assets/, themes/, resources/ |
Embedded fonts, icons, themes, and packaged helper binaries |
The main data path is deliberately direct: GPUI views dispatch state commands, commands call the connection layer, and the official Rust MongoDB driver talks to the server. Forge reuses the active connection transport through its compiled sidecar.
- macOS and the stable Rust toolchain
- just
- lld at
/opt/homebrew/opt/lld/bin/ld64.lld(the repository linker configuration uses this path) - Bun when changing or rebuilding Forge
- Docker for the Testcontainers integration suites
- A local or remote MongoDB deployment for manual testing
git clone https://github.com/ggagosh/openmango.git
cd openmango
just devThe repository includes the Apple Silicon helper binaries used by normal local development. Rebuild or download them for your host when working on Forge or BSON transfer support:
just build-sidecar
just download-toolsNo .env file is required. Use just debug to start with RUST_LOG=debug.
| Command | Purpose |
|---|---|
just dev |
Run the debug build |
just check |
Fast compile check |
just fmt-check |
Check Rust formatting |
just lint |
Run Clippy with warnings denied |
just unit-test |
Run library tests serially |
just test |
Run all Rust tests; integration suites require Docker |
just ci |
Match the hosted quality job: format, release check, release Clippy, sidecar check, and unit tests |
just precommit |
Run just ci followed by the full test suite |
Run one integration suite serially with:
cargo test --test transfer_tests -- --test-threads=1src/
app/ Application shell, sidebar, and top-level layout
state/ State, persistence, and commands
connection/ MongoDB operations and transports
views/ Documents, aggregation, Forge, transfer, AI, and settings screens
components/ Reusable GPUI controls
models/ Connection and tree models
helpers/ Validation, Keychain, logging, crypto, and support utilities
tests/ Docker-backed integration suites and shared test helpers
tools/ Forge sidecar source
scripts/ Tool download, packaging, and release scripts
See CONTRIBUTING.md for coding standards and the pull request checklist. Shipped changes are tracked in CHANGELOG.md.
OpenMango is human-directed and machine-authored: its architecture, implementation, tests, and tooling were written with AI.
OpenMango is available under the GNU General Public License v3.0.

