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)
๐Ÿ“น

Video Tutorials

Watch step-by-step video guides on YouTube.

Watch Videos
๐Ÿ’ฌ

Community Discord

Join our Discord for help and discussions.

Join Discord
๐Ÿ›

Report Issues

Found a bug? Report it on GitHub.

Open Issue

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 }
});