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
API Reference
Looking for programmatic access? Sutido supports scripting and automation through our API.
View API Docs// Example: Run a query programmatically
const result = await sutido.query({
database: 'mydb',
collection: 'users',
query: { status: 'active' },
options: { limit: 100 }
});