Smithery
browser_get_accessibility_tree
Get the accessibility tree of the current page. Returns a structured snapshot of all interactive elements, headings, links, buttons, form fields, images with alt text, and ARIA roles. This is the BEST tool for understanding page structure and UX without looking at screenshots.
Remote relievedattention992-smithery/screenshotsmcp
Other tools also called browser_get_accessibility_tree?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"maxDepth": {
"type": "integer",
"default": 8,
"maximum": 20,
"minimum": 1,
"description": "Maximum depth of the tree to return"
},
"sessionId": {
"type": "string",
"description": "Session ID from browser_navigate"
},
"interestingOnly": {
"type": "boolean",
"default": true,
"description": "If true, only return nodes that are typically interesting for UX analysis (buttons, links, inputs, headings, images). Set false for the full tree."
}
}
}