Skip to main content

Quick Install

uvx zenable-mcp install amp
Requires UV. See the CLI command reference for more options.
That’s it! You’re all set. Start using Zenable’s conformance checking in Amp.
The below is a minimal example. Consider using the quick install command to handle this automatically.
# Add the MCP server
amp mcp add zenable https://mcp.zenable.app/

# Approve the server (required for workspace-scoped servers)
amp mcp approve zenable

# Authenticate with Zenable
amp mcp oauth login zenable \
  --server-url https://mcp.zenable.app/ \
  --client-id BwZkedovVV2bIPmxmK3crzdHmTdRqjv4 \
  --auth-url https://zenable.us.auth0.com/authorize \
  --token-url https://zenable.us.auth0.com/oauth/token \
  --scopes "openid,profile,email"

Option 2: Manual Configuration File

Add the following to your settings file:
{
  "amp.mcpServers": {
    "zenable": {
      "url": "https://mcp.zenable.app/"
    }
  },
  "amp.mcpPermissions": [
    { "matches": { "url": "https://mcp.zenable.app/*" }, "action": "allow" }
  ],
  "amp.permissions": [
    { "tool": "mcp__zenable_*", "action": "allow" }
  ]
}
~/.config/amp/settings.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.
For more details on MCP configuration in Amp, see the Amp MCP documentation.