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

# Antigravity

## Quick Install

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

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

**That's it! You're all set.** Start using Zenable's conformance checking in Antigravity.

***

<Accordion title="Advanced: Manual Configuration" icon="wrench">
  <Note>
    * **Global installs**: Use the Antigravity CLI (`antigravity --add-mcp`) - works on all platforms
    * **Project installs**: Use file-based configuration at `<repo_root>/.vscode/mcp.json`
  </Note>

  ### Global Installation (CLI)

  For global installations, if you have the `antigravity` command available:

  ```bash theme={null}
  antigravity --add-mcp '{"name":"zenable","url":"https://mcp.zenable.app/","type":"http"}'
  ```

  This works on all platforms (macOS, Windows, Linux).

  ### Project Installation (File)

  For project-level installations, place the following configuration:

  ```json theme={null}
  {
    "servers": {
      "zenable": {
        "type": "http",
        "url": "https://mcp.zenable.app/"
      }
    },
    "inputs": []
  }
  ```

  In this file location within your repository:

  ```bash theme={null}
  <repo_root>/.vscode/mcp.json
  ```

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