Smithery
accessibility_snapshot
Get the accessibility tree for any URL without needing a browser session. Returns a structured snapshot of all interactive elements, headings, links, buttons, form fields, images with alt text, and ARIA roles. Great for quick UX audits.
Remote relievedattention992-smithery/screenshotsmcp
Other tools also called accessibility_snapshot?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "URL to get the accessibility tree for"
},
"maxDepth": {
"type": "integer",
"default": 8,
"maximum": 20,
"minimum": 1,
"description": "Maximum depth of the tree to return"
},
"interestingOnly": {
"type": "boolean",
"default": true,
"description": "If true, only return interesting UX nodes (buttons, links, inputs, headings, images). Set false for the full tree."
}
}
}