MCP Web Browser Server

by random-robbie
Verified

get_page_screenshots

Capture screenshot of the current page. Args: full_page: Whether to capture the entire page or just the viewport selector: Optional CSS selector to screenshot a specific element context: Optional context object for logging (ignored) Returns: Base64 encoded screenshot image

Input Schema

NameRequiredDescriptionDefault
contextNo
full_pageNo
selectorNo

Input Schema (JSON Schema)

{ "properties": { "context": { "anyOf": [ {}, { "type": "null" } ], "default": null, "title": "Context" }, "full_page": { "default": false, "title": "Full Page", "type": "boolean" }, "selector": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Selector" } }, "title": "get_page_screenshotsArguments", "type": "object" }