The MCP server

One Streamable HTTP endpoint at /mcp speaking JSON-RPC. Connect a client and scan from a conversation.

Cette documentation est rédigée en anglais.

Connect a client

Codex

codex mcp add axrush --url https://axrush.com/mcp

Claude Code

claude mcp add --transport http axrush https://axrush.com/mcp

Cursor, and any client that reads an mcp.json

{
  "mcpServers": {
    "axrush": { "url": "https://axrush.com/mcp" }
  }
}

In Claude Desktop, add it as a custom connector with the same URL, under Settings and Connectors.

Anonymous tools

Free, no key

Available to every connection, no key and no account, rate limited like the public API because a scan sends real traffic:

Your sites, authenticated

Paid plan

An organization API key unlocks your sites, scans, fixes, comparisons, verification records, Answers and private agent runs. API access is part of the paid plan. Reading existing Answers and agent runs never starts a model call or spends credits.

An anonymous connection never sees these tools, so an agent is never taught about a door it cannot open. Create keys on your account page

Connect with your key

Codex

codex mcp add axrush --url https://axrush.com/mcp --bearer-token-env-var AXRUSH_API_KEY

Set AXRUSH_API_KEY to your organization API key in the environment that launches Codex, then restart the client. Codex sends it as a bearer token.

Claude Code

claude mcp add --transport http axrush https://axrush.com/mcp \
  --header "Authorization: Bearer axr_..."

Cursor, and any client that reads an mcp.json

{
  "mcpServers": {
    "axrush": {
      "url": "https://axrush.com/mcp",
      "headers": { "authorization": "Bearer axr_..." }
    }
  }
}

Read, fix, verify

Start with list_my_sites and get_my_report. Read get_my_fixes, then get_my_fix for the selected check. After publishing your changes, call scan_my_site and poll get_my_scan after pollAfterSeconds. Use the baseline and completed scan ids with compare_my_scans. Comparisons cover origin findings; a changed engine or page coverage prevents declaring fixes or regressions confirmed.

Every tool returns readable text and structuredContent matching its outputSchema, with a nextStep. Check isError first: errors contain an error code and message. N/A checks have applicable=false and score=null, and do not count as failures.

list_my_sites, get_my_history, get_my_verifications, get_my_answers and get_my_agent_runs accept limit (1–50, default 20) and offset (default 0). Repeat with nextOffset as offset and the same limit until nextOffset is null. In Answers, pagination applies to the pass list; selectedPass identifies the pass whose results are returned.

Native clients need no Origin header. Browser clients must use the site origin or an origin explicitly allowed by the deployment. Supported MCP protocol versions: 2025-06-18 and 2025-03-26. The endpoint is stateless and accepts JSON requests up to 64 KiB.