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

# Supersonic

> A CRM with 62 tools that AI agents can call to manage contacts, deals, pipelines, and more.

## What is Supersonic?

Supersonic is a CRM that exposes its entire functionality as API tools. Instead of clicking through a UI, you or your AI agent call tools like `records.create`, `lists.add_entry`, or `analytics.pipeline` to manage your data.

There are 62 tools across 10 categories: objects, records, lists, views, notes, tasks, analytics, reports, timeline, and graph. Every tool has a full JSON schema describing its parameters.

## Get started

<Card title="Quick install" icon="terminal">
  ```bash theme={null}
  npx supersonic-cli login
  ```
</Card>

You can also connect via the [REST API](/connect/rest) or [MCP](/connect/mcp).

## How to connect

| Interface                 | How it works                                    | Good for                             |
| ------------------------- | ----------------------------------------------- | ------------------------------------ |
| [CLI](/connect/cli)       | `supersonic records list contacts --json`       | Claude Code, Codex, terminal         |
| [REST API](/connect/rest) | `POST /api/developers/mcp/call/` with JSON body | Scripts, custom agents, any language |
| [MCP](/connect/mcp)       | Standard MCP protocol, auto-discovers tools     | Claude Desktop, Cursor, Windsurf     |

All three interfaces use the same API keys, same permissions, and same audit log.

## Quick links

<CardGroup cols={2}>
  <Card title="Data model" icon="database" href="/data-model">
    How objects, fields, records, and pipelines work.
  </Card>

  <Card title="Tools reference" icon="wrench" href="/tools/objects">
    All 62 tools with parameters and examples.
  </Card>

  <Card title="Authentication" icon="key" href="/reference/authentication">
    API keys, scopes, and permissions.
  </Card>

  <Card title="Rate limits" icon="gauge" href="/reference/rate-limits">
    1,000 calls per minute per API key.
  </Card>
</CardGroup>
