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.
Quick Install
That’s it! You’re all set. Start using Zenable’s conformance checking in Amp.
Advanced: Manual Configuration
The below is a minimal example. Consider using the quick install command to handle this automatically.
Option 1: Using Amp CLI (Recommended) # 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" }
]
}
Global (all projects)
Project-specific
~ /.config/amp/settings.json
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.
For more details on MCP configuration in Amp, see the Amp MCP documentation .