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

New to Sutido? Start with our installation guide.

Get Started
๐Ÿ’ฌ

Community Discord

Join our Discord for help and discussions.

Join Discord
๐Ÿ›

Report Issues

Found a bug? Report it on GitHub.

Open Issue

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)