Documentation
Everything you need to get started and master Sutido.
Quick Start
Get up and running in under 5 minutes.
1
Download & Install
Download Sutido for your platform and run the installer. It takes less than a minute.
2
Add a Connection
Click "New Connection" and enter your MongoDB connection string or configure individual settings.
mongodb://localhost:27017 3
Start Querying
Select a database and collection, then start writing queries in the editor.
db.users.find({ status: "active" }).limit(10) Getting Started
Features
Connections
Query Editor
Master the IntelliShell editor with context-aware autocomplete and AI-powered query generation.
Learn More// IntelliShell suggests fields from your data
db.users.find({
status: "active",
"address.city": "Berlin"
}).sort({ createdAt: -1 }).limit(10)