Skip to main content

Quick Install

uvx zenable-mcp install auggie
Requires UV. See the CLI command reference for more options.
That’s it! You’re all set. Start using Zenable’s conformance checking in Auggie. This installs both the MCP server and Auggie hooks for real-time code checking.
The below is a minimal example. Consider using the quick install command to handle this automatically.
Use the Auggie CLI to add the Zenable MCP server:
auggie mcp add zenable --transport http --url https://mcp.zenable.app/
To verify the installation:
auggie mcp list
To remove:
auggie mcp remove zenable
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.
Hooks run automatically to check for conformance issues. The quick install command sets this up for you.
Place the following configuration in ~/.augment/settings.json (global) or .augment/settings.json (project):
{
  "hooks": {
    "SessionStart": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "uvx zenable-mcp@latest hook"
          }
        ]
      }
    ],
    "Stop": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "uvx zenable-mcp@latest hook"
          }
        ]
      }
    ]
  }
}
This uses Auggie’s hook system to run conformance checks at session boundaries.