Skip to main content

Quick Install

uvx zenable-mcp install antigravity
Requires UV. See the CLI command reference for more options.
That’s it! You’re all set. Start using Zenable’s conformance checking in Antigravity.
  • 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

Global Installation (CLI)

For global installations, if you have the antigravity command available:
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:
{
  "servers": {
    "zenable": {
      "type": "http",
      "url": "https://mcp.zenable.app/"
    }
  },
  "inputs": []
}
In this file location within your repository:
<repo_root>/.vscode/mcp.json
We only recommend this manual approach if your host doesn’t have uv or uvx installed and you’d like to avoid installing it. Otherwise, the installer 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.