Chrome Tools MCP Server

capture_screenshot

Input Schema

NameRequiredDescriptionDefault
formatNoInitial capture format (jpeg/png). Note: Final output will be WebP with PNG fallback
fullPageNoCapture full scrollable page
qualityNoInitial capture quality (1-100). Note: Final output uses WebP quality settings
tabIdYesID of the Chrome tab to capture. Only send this unless you are having issues with the result.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "format": { "description": "Initial capture format (jpeg/png). Note: Final output will be WebP with PNG fallback", "enum": [ "jpeg", "png" ], "type": "string" }, "fullPage": { "description": "Capture full scrollable page", "type": "boolean" }, "quality": { "description": "Initial capture quality (1-100). Note: Final output uses WebP quality settings", "maximum": 100, "minimum": 1, "type": "number" }, "tabId": { "description": "ID of the Chrome tab to capture. Only send this unless you are having issues with the result.", "type": "string" } }, "required": [ "tabId" ], "type": "object" }