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

# Amp

## Quick Install

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

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

***

<Accordion title="Advanced: Manual Configuration" icon="wrench">
  <Note>The below is a minimal example. Consider using the quick install command to handle this automatically.</Note>

  ### Option 1: Using Amp CLI (Recommended)

  ```bash theme={null}
  # 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:

  ```json theme={null}
  {
    "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" }
    ]
  }
  ```

  {/* Tool-level permissions (amp.permissions): https://ampcode.com/manual#permissions */}

  <CodeGroup>
    ```bash Global (all projects) theme={null}
    ~/.config/amp/settings.json
    ```

    ```bash Project-specific theme={null}
    .amp/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>

  For more details on MCP configuration in Amp, see the [Amp MCP documentation](https://ampcode.com/manual#mcp).
</Accordion>
