← squirrelscan.com

INDIVIDUAL MCP TOOL

get_audit_status

Poll a running audit by run_id (from run_audit or list_audits).

squirrelscan.comnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

squirrelscan.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.squirrelscan]
url = "https://mcp.squirrelscan.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "squirrelscan": {
      "type": "http",
      "url": "https://mcp.squirrelscan.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: squirrelscan
Remote MCP URL: https://mcp.squirrelscan.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "squirrelscan": {
      "url": "https://mcp.squirrelscan.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "squirrelscan": {
      "type": "http",
      "url": "https://mcp.squirrelscan.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "squirrelscan",
  "transport": "streamable-http",
  "url": "https://mcp.squirrelscan.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • run_audit — Run a cloud audit of a website (crawl + 260+ rule analysis + report).
  • list_audits — List the organization's audit runs: currently active (pending/running) plus the most recent runs of any status.
  • list_websites — List websites the organization has audited, with their latest run status and health score.
  • add_website — Register a website with the organization without running an audit (run_audit registers automatically, so this is only needed to set a site up ahead of time).
  • delete_website — Delete a website from the organization (soft delete: past audits, reports, and issues are preserved, and published report links keep working).
  • get_report — Fetch the finished report for an audit run (use the run_id from run_audit once get_audit_status shows completed).
  • list_issues — List a website's open audit issues (like a bug tracker: each issue is one failing rule with occurrences across pages, numbered per website).
  • get_issue — Fetch one issue by website_id + issue number, including its full description, recommendation, affected pages, occurrence detail from the latest report (which page/image/URL, snippets), and comment thread.