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

# Quickstart

> Register for Sari and connect your AI agent in minutes

## Overview

This guide walks you through the process of getting access to the Sari Platform and connecting your first AI agent.

<Steps>
  <Step title="Register on the Admin Console">
    Go to [sari-console.web.app](https://sari-console.web.app) and click **Sign Up**.

    Enter your email address and create a password.
  </Step>

  <Step title="Complete your profile">
    After signing up, fill in your profile details:

    * **Full Name** — Your name
    * **Company** — Your organization name

    Submit the form to create your registration request.
  </Step>

  <Step title="Wait for admin approval">
    Your registration will be reviewed by a Sari admin. You'll receive an email once your account is approved.

    <Info>
      Approval typically happens within one business day.
    </Info>
  </Step>

  <Step title="Connect to the MCP Server">
    Add Sari to your Claude Desktop configuration.

    <Tabs>
      <Tab title="macOS">
        Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:

        ```json theme={null}
        {
          "mcpServers": {
            "sari-platform": {
              "command": "npx",
              "args": [
                "-y",
                "mcp-remote",
                "https://mcp-server.sari-platform.com/sse"
              ]
            }
          }
        }
        ```
      </Tab>

      <Tab title="Windows">
        Edit `%APPDATA%\Claude\claude_desktop_config.json`:

        ```json theme={null}
        {
          "mcpServers": {
            "sari-platform": {
              "command": "npx",
              "args": [
                "-y",
                "mcp-remote",
                "https://mcp-server.sari-platform.com/sse"
              ]
            }
          }
        }
        ```
      </Tab>
    </Tabs>

    Restart Claude Desktop after saving the config file.

    For detailed setup instructions and troubleshooting, see the [MCP Setup guide](/mcp/setup).
  </Step>

  <Step title="Start using Sari">
    Open a new conversation in Claude Desktop. You should see **sari-platform** in the MCP tools list.

    Try a test query:

    ```
    Search for payment processing APIs
    ```

    Claude will call the `search_api_collections` tool and return matching APIs.
  </Step>
</Steps>

## Next Steps

<CardGroup cols={2}>
  <Card title="Architecture" icon="diagram-project" href="/architecture">
    Understand how the platform works
  </Card>

  <Card title="MCP Tools" icon="wrench" href="/mcp/tools">
    Learn about all available MCP tools
  </Card>

  <Card title="MCP Setup" icon="gear" href="/mcp/setup">
    Detailed setup and troubleshooting
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore the full REST API
  </Card>
</CardGroup>
