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

# AntiGravity Quickstart

> Get started with Augment Context Engine MCP in AntiGravity in minutes

<Tabs>
  <Tab title="Local Server">
    ### 1. Install Auggie CLI

    ```bash theme={null}
    npm install -g @augmentcode/auggie@latest
    ```

    ### 2. Sign in to Augment

    ```bash theme={null}
    auggie login
    ```

    This will open a browser window for authentication.

    ### 3. Configure the MCP server in AntiGravity

    * Click the MCP server icon
          <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/anti-gravity-1.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=0435ca2c51f4e1ba08dfb960e831d1b5" alt="MCP server icon" width="195" height="143" data-path="images/anti-gravity-1.png" />
    * Click manage MCP server
          <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/anti-gravity-2.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=0ac8123bfce7dcbbc06cad295e83d5cd" alt="Manage MCP server" width="146" height="38" data-path="images/anti-gravity-2.png" />
    * Click View raw config
          <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/anti-gravity-3.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=aba540233efbcb11816383c6c1cf2fe0" alt="View raw config" width="149" height="58" data-path="images/anti-gravity-3.png" />

    Paste this configuration:

    ```json theme={null}
    {
      "mcpServers": {
        "augment-context-engine": {
          "command": "auggie",
          "args": ["--mcp", "--mcp-auto-workspace"]
        }
      }
    }
    ```

    ### 4. Test the integration

    ```
    Prompt: "What is this project? Please use codebase retrieval tool to get the answer."
    ```

    AntiGravity should confirm it has access to the `codebase-retrieval` tool.

    <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/anti-gravity-4.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=a047aed452e06af1c7d41e2c2461e731" alt="AntiGravity test" width="477" height="83" data-path="images/anti-gravity-4.png" />

    See [MCP Server Mode](/cli/reference#mcp-server-mode) for more options.
  </Tab>

  <Tab title="Remote Server">
    1. Sign up at [augmentcode.com](https://augmentcode.com)
    2. Follow the setup instructions at [app.augmentcode.com/mcp/configuration](https://app.augmentcode.com/mcp/configuration)
  </Tab>
</Tabs>
