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

# Kilo Quickstart

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

    * Click the MCP server icon
          <img src="https://mintcdn.com/augment-mtje7p526w/rIravLuzI7-HsY1h/images/kilo-1.png?fit=max&auto=format&n=rIravLuzI7-HsY1h&q=85&s=db01b02e473bc0d81b0bbc0335d36540" alt="Click the MCP server icon" width="331" height="68" data-path="images/kilo-1.png" />

    * Click Edit Global MCP
          <img src="https://mintcdn.com/augment-mtje7p526w/rIravLuzI7-HsY1h/images/kilo-2.png?fit=max&auto=format&n=rIravLuzI7-HsY1h&q=85&s=c7c319402a8842930e170de74aa27154" alt="Click Edit Global MCP" width="264" height="64" data-path="images/kilo-2.png" />

    Paste this configuration:

    ```json theme={null}
    {
      "mcpServers": {
        "augment-context-engine": {
          "command": "auggie",
          "type": "stdio",
          "args": ["--mcp", "--mcp-auto-workspace"],
          "disabled": false,
          "alwaysAllow": ["codebase-retrieval"]
        }
      }
    }
    ```

    ### 4. Test the integration

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

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

    <img src="https://mintcdn.com/augment-mtje7p526w/rIravLuzI7-HsY1h/images/kilo-3.png?fit=max&auto=format&n=rIravLuzI7-HsY1h&q=85&s=643074aad72151ee9dffcb93459abb2c" alt="Kilo test" width="722" height="353" data-path="images/kilo-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>
