Skip to main content
← Back to home

Integrations

Connect Audiq to your existing tools. CI pipelines, AI coding assistants, chat notifications — one scan engine, many workflows.

GitHub Actions

CI/CD

Add 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=95

Claude Code

AI Coding

Use 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 Coding

Add 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

Notifications

Get 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

Notifications

Same 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

Deployment

Auto-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"
}