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

# GitHub Copilot Quickstart

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

    * Please create the following file **at the root** of your project: **.vscode/mcp.json**
    * Paste this content inside and **Save**

    ```json theme={null}
    {
      "servers": {
        "augmentcode": {
          "type": "stdio",
          "command": "auggie",
          "args": ["--mcp", "--mcp-auto-workspace"]
        }
      },
      "inputs": []
    }
    ```

    ### 4. Test the integration

    Prompt this in **AGENT MODE**: "What is this project? Please use codebase retrieval tool to get the answer."

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

    <img src="https://mintcdn.com/augment-mtje7p526w/bPUsQPriBJwiNgJV/images/copilot-1.png?fit=max&auto=format&n=bPUsQPriBJwiNgJV&q=85&s=fab7a23aa375687de73dc5e7ee9b8e2d" alt="Copilot test" width="761" height="235" data-path="images/copilot-1.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>
