> ## 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.

# Cursor Quickstart

> Get started with Augment Context Engine MCP in Cursor 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 Cursor

    * Go to settings (top right)
          <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/cursor-1.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=d1195573e43bb2307721f576674e5aae" alt="Cursor settings" width="136" height="37" data-path="images/cursor-1.png" />
    * Click on **Tools & MCP** on the left menu then **New MCP Server**
          <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/cursor-2.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=8db7b7e8d319f1cb1de18744f602a8bb" alt="Cursor MCP" width="942" height="418" data-path="images/cursor-2.png" />

    Paste this configuration:

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

    ### 4. Test the integration

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

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

    <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/cursor-3.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=a33dfe584f3b9439ea2ba8e4ad485717" alt="Cursor test" width="418" height="149" data-path="images/cursor-3.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>
