> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tamery.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Create a Tamery account, add a connection, run your first query, and try the AI assistant.

From zero to your first query.

<Steps>
  <Step title="Create an account">
    Go to [tamery.app](https://tamery.app) and click **Sign in**. Use email or an OAuth provider.
  </Step>

  <Step title="Add a connection">
    Click **Add new**, pick a database type (PostgreSQL, MySQL, MSSQL, ClickHouse), and paste your connection string. Click **Test connection**, then name it and **Save**.

    Choose a sync type: **Cloud (with password)** syncs the full string to every device; **Cloud (without password)** syncs only metadata and keeps the password local. Either way the connection is available wherever you sign in.
  </Step>

  <Step title="Browse data">
    Open the connection, go to **Table browser**, pick a schema and table. Sort by clicking headers, filter rows, and click a cell to edit it.
  </Step>

  <Step title="Run a query">
    Open the **Query editor** and run SQL:

    ```sql theme={null}
    SELECT * FROM users ORDER BY created_at DESC LIMIT 10;
    ```

    Press <kbd>Ctrl</kbd>/<kbd>⌘</kbd>+<kbd>Enter</kbd> to execute. Results show below the editor.
  </Step>

  <Step title="Try the AI assistant">
    Open the AI chat panel and ask in plain English — e.g. *"top 5 customers by total order value"*. The assistant knows your schema and can generate, explain, and fix SQL. Insert any suggestion into the editor with one click.
  </Step>
</Steps>

## Next

<CardGroup cols={3}>
  <Card title="Connections" icon="database" href="/connections/overview">
    Manage connections and sync types.
  </Card>

  <Card title="AI assistant" icon="sparkles" href="/features/ai-assistant">
    Natural-language queries and error fixes.
  </Card>

  <Card title="CLI" icon="terminal" href="/cli/overview">
    Query and proxy from the terminal.
  </Card>
</CardGroup>
