MongoBro โ MongoDB Database Browser
MongoBro supports all standard MongoDB connection string formats:
mongodb://localhost:27017 โ local server, no authmongodb://username:password@host:27017 โ with authenticationmongodb://user:pass@host:27017/mydb โ with a specific databasemongodb+srv://user:pass@cluster0.mongodb.net โ MongoDB Atlas (SRV)When connecting from a physical device, localhost refers to the device itself, not your computer. You need to use your computer's local network IP address instead.
Find your computer's IP address:
ifconfig or check System Preferences โ Networkipconfig in Command PromptThen use: mongodb://192.168.x.x:27017
Android Emulator only: Use 10.0.2.2 as the host to reach your development machine's localhost.
Also ensure MongoDB is bound to 0.0.0.0 (not just 127.0.0.1) in its config, and that your firewall allows port 27017.
1. In MongoDB Atlas, go to your cluster and click Connect.
2. Choose Connect your application and copy the connection string.
3. Replace <password> with your database user's password.
4. Paste the full URI into MongoBro and tap Connect.
Example: mongodb+srv://myuser:mypassword@cluster0.abc12.mongodb.net
Make sure your device's IP is added to the Atlas Network Access allow list (or set it to allow from anywhere: 0.0.0.0/0 for testing).
On the Connection screen, enter your URI in the field and tap the Save button. You'll be asked to give the connection a name (e.g., "Production", "Atlas Dev").
Saved connections appear below the input field. Tap any saved connection to load its URI and connect instantly.
To remove a saved connection, tap the trash icon next to it.
MongoBro 1.0 is a read-only browser. You can view databases, collections, and documents, but cannot create, edit, or delete data. Write operations are planned for a future version.
Your connection URIs are stored locally on your device using the operating system's standard storage (Android SharedPreferences / iOS NSUserDefaults). They are never sent to MongoBro's servers โ we don't have any.
For best security:
Common causes:
bindIp is set to 0.0.0.0 or your device's IP (not just 127.0.0.1).0.0.0.0/0 in Atlas Network Access settings.MongoBro uses the mongo_dart driver which supports standard MongoDB connection URIs. Replica set and Atlas SRV connections should work via the standard URI format. Full replica set configuration options are not exposed in the UI in v1.0.
To remove individual saved connections, use the delete (trash) icon next to each one on the Connection screen.
To remove all app data at once, uninstall MongoBro from your device. This permanently removes all locally stored connection strings.
Our support team is happy to assist. Send us an email and we'll get back to you as soon as possible.
Email Support