Quick Start
This guide walks you through setup, your first query, and next steps.
Prerequisites
- A running MongoDB instance (Atlas, self-hosted, or Enterprise)
- A modern browser (Chrome, Firefox, Safari, Edge)
- Your MongoDB connection string ready
Create account
Go to moret.cloud and click "Start free trial".
- Choose email or SSO to sign in
- Verify your email address
- You'll be redirected to the dashboard
Connect MongoDB
In the dashboard, click "New connection" or "Connect MongoDB".
- Select your MongoDB type (Atlas, Self-hosted, etc.)
- Paste connection string or enter credentials
- Optionally rename the connection
Connection String Format
The connection string connects moret to your MongoDB. Here's an example for MongoDB Atlas:
plaintext
Test connection
Click "Test connection" to ensure everything works.
- moret attempts to connect to your MongoDB
- On success, you'll see your databases listed
- On error: Check connection string and firewall rules
Write your first query
Now the fun part: Write your first AI-generated query.
Assume you have a "users" collection. You want to find all users from Germany who joined in the last month.
Simply enter in the Query Builder:
plaintext
moret automatically generates:
plaintext
What's happening here?
$matchstage filters data by country and date$projectstage selects only the fields you needTheaggregation pipeline executes multiple operations in sequence
More complex query
You want to see how many users are registered per country:
plaintext
moret generates:
plaintext
Next steps
After writing your first query, explore more features:
Query Templates
Save frequently used queries
Invite team
Invite colleagues and set permissions
Performance Profiling
See how fast your queries are
Troubleshooting
Connection timeout
Check firewall rules and IP whitelisting in MongoDB Atlas
Authentication failed
Verify username and password in connection string
No databases shown
Ensure the user has read access to at least one database