Integrations
Connect Audiq to your existing tools. CI pipelines, AI coding assistants, chat notifications — one scan engine, many workflows.
GitHub Actions
CI/CDAdd quality gates to your pipeline. Fail builds when scores drop below budget.
- name: Audiq Quality Check
run: npx audiq ci ${{ env.DEPLOY_URL }} --budget perf=80,seo=90,a11y=95Claude Code
AI CodingUse Audiq as an MCP server in Claude Code. Scan pages, take screenshots, and get fix plans directly in your terminal.
{
"mcpServers": {
"audiq": { "command": "npx", "args": ["audiq"] }
}
}Cursor
AI CodingAdd Audiq as an MCP server in Cursor for in-editor website auditing and visual analysis.
// Add to Cursor MCP settings
{
"mcpServers": {
"audiq": { "command": "npx", "args": ["audiq"] }
}
}Slack
NotificationsGet score regression and budget breach alerts in Slack. Add your Slack incoming webhook URL to any site.
// In site settings, paste your Slack webhook URL:
https://hooks.slack.com/services/T.../B.../...
// Audiq sends:
// { "text": "⚠️ Score regression on example.com..." }Discord
NotificationsSame as Slack — Discord webhooks are compatible. Add the webhook URL to site settings.
// In site settings, paste your Discord webhook URL: https://discord.com/api/webhooks/.../... // Append /slack for Slack-compatible format
Vercel
DeploymentAuto-scan after every Vercel deployment. Add the CI command to your build pipeline.
// vercel.json — add post-deploy check
{
"buildCommand": "npm run build && npx audiq ci $VERCEL_URL"
}