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

# Roo Code

## Quick Install

```bash theme={null}
zenable install roo
```

<Note>See the [CLI command reference](/integrations/zenable/commands#install) for more options.</Note>

**That's it! You're all set.** Restart Roo Code and start using Zenable's conformance checking in your AI coding assistant.

***

<Accordion title="Advanced: Manual Configuration" icon="wrench">
  <Note>The below is a minimal example which may need to be merged with your existing configuration. Consider using the quick install command to handle this automatically.</Note>

  Place the following configuration:

  ```json theme={null}
  {
    "zenable": {
      "disabled": false,
      "command": "npx",
      "args": ["-y", "--", "mcp-remote", "https://mcp.zenable.app/"],
      "alwaysAllow": ["conformance_check"]
    }
  }
  ```

  In one of these file locations:

  <CodeGroup>
    ```bash Project theme={null}
    .roo/mcp.json
    ```

    ```bash Windows theme={null}
    %APPDATA%\Code\User\globalStorage\rooveterinaryinc.roo-cline\settings\mcp_settings.json
    ```

    ```bash Linux theme={null}
    ~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json
    ```

    ```bash macOS theme={null}
    ~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json
    ```
  </CodeGroup>

  <Warning>We only recommend this manual approach if you can't use `zenable install`. Otherwise, `zenable install` is much safer and can handle configuration upgrades over time, handles merges with existing configs, performs backups and logging in case of issues, and more.</Warning>
</Accordion>
