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

# Tolmo: Cloud Security Platform CLI

> Tolmo gives security and engineering teams a unified CLI to query infrastructure graphs, manage findings, and proxy requests to connected services.

Tolmo is the command-line interface for the Tolmo cloud security platform. It gives your team a single tool to query your infrastructure graph, run SQL and Cypher queries, manage security findings, and proxy authenticated requests to connected services like GitHub, AWS, Linear, Sentry, and Datadog — all without credentials ever leaving the backend.

<CardGroup cols={2}>
  <Card title="Installation" icon="download" href="/installation">
    Install Tolmo via Homebrew, the install script, or a Debian package in under a minute.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    Log in with your browser, use named profiles, or configure environment variables for CI/CD.
  </Card>

  <Card title="SQL & Cypher Queries" icon="database" href="/commands/sql-cypher">
    Query your organization's relational and graph databases directly from the terminal.
  </Card>

  <Card title="Security Findings" icon="shield" href="/commands/findings">
    Create, update, triage, and track security findings with a full audit trail.
  </Card>

  <Card title="Connected Services" icon="plug" href="/commands/query">
    Proxy requests to GitHub, AWS, Linear, Sentry, and Datadog using org credentials.
  </Card>

  <Card title="CI/CD Integration" icon="gear" href="/guides/ci-cd">
    Use Tolmo in automated pipelines with environment variable authentication.
  </Card>
</CardGroup>

## Get started in minutes

<Steps>
  <Step title="Install the CLI">
    Install Tolmo using Homebrew or the install script:

    ```bash theme={null}
    brew tap tolmohq/tolmo https://github.com/tolmohq/tolmo
    brew install tolmo
    ```
  </Step>

  <Step title="Log in">
    Authenticate with your Tolmo account. This opens a browser-based login flow:

    ```bash theme={null}
    tolmo auth login
    ```
  </Step>

  <Step title="Explore your infrastructure">
    Run your first query against the infrastructure graph:

    ```bash theme={null}
    tolmo cypher "MATCH (n) RETURN labels(n), count(*) ORDER BY count(*) DESC"
    ```
  </Step>

  <Step title="List connected services">
    See which integrations are available for your organization:

    ```bash theme={null}
    tolmo query list
    ```
  </Step>
</Steps>

## What you can do with Tolmo

<CardGroup cols={3}>
  <Card title="Infrastructure Graph" icon="diagram-project" href="/commands/sql-cypher">
    Query nodes, edges, and relationships across your entire cloud infrastructure using Cypher.
  </Card>

  <Card title="Code Repositories" icon="code-branch" href="/commands/code">
    List and clone repositories from your organization's connected GitHub and GitLab accounts.
  </Card>

  <Card title="Threat Models" icon="triangle-exclamation" href="/features/threat-model">
    Download threat model pipeline artifacts and review individual scan steps.
  </Card>

  <Card title="Datadog Monitors" icon="chart-line" href="/features/monitors">
    Create and manage Datadog monitors owned by the platform, with server-side credentials.
  </Card>

  <Card title="Agent Skills" icon="robot" href="/guides/agent-skill">
    Install the Tolmo skill into Claude Code and other AI agents for automated queries.
  </Card>

  <Card title="Time Machine" icon="clock-rotate-left" href="/guides/time-machine">
    Query historical state of your infrastructure using temporal graph attributes.
  </Card>
</CardGroup>
