/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ interface ScreenshotData { html: string; } export const screenshots: Record = { basic: { html: '
Hello MCP
', }, viewportOverflow: { html: '
View Port overflow
', }, button: { html: '', }, };