/** * MCP Tool: get_scan_run * * Gets scan run status and results summary via GET /v1/scan-runs/:id. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { McpExecutor } from "../executor.js"; /** * Format the pages summary section. */ export declare function formatPages(pages: Record): string; /** * Format the issues summary section. */ export declare function formatIssues(issues: Record): string; /** * Format the visual changes section. */ export declare function formatChanges(changes: Record): string; /** * Format the lighthouse averages section. */ export declare function formatLighthouse(lh: Record): string; /** * Format the credits section. */ export declare function formatCredits(credits: Record): string; /** * Format needsAttention items. */ export declare function formatNeedsAttention(items: Record[]): string; export declare function registerGetScanSummary(server: McpServer, executor: McpExecutor): void;