check_scrollability
Determine if a web page is scrollable in a specified direction (vertical, horizontal, or both) using the MCP Browser Server to automate web interaction and analysis.
Instructions
Check if the page is scrollable in the specified direction
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| direction | No | Direction to check for scrollability | both |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"default": "both",
"description": "Direction to check for scrollability",
"enum": [
"vertical",
"horizontal",
"both"
],
"type": "string"
}
},
"type": "object"
}