{ "name": "browser_scroll", "description": "Scroll the page, or a specific scrollable element, by a pixel amount.", "requires_confirmation": false, "inputSchema": { "type": "object", "properties": { "direction": { "type": "string", "enum": [ "up", "down", "left", "right" ], "description": "Scroll direction." }, "amount": { "type": "number", "description": "Pixels to scroll (default 500)." }, "selector": { "type": "string", "description": "CSS selector of the scrollable element (default: the page itself)." } }, "required": [ "direction" ] } }