startAccessibilityScan
Initiate an accessibility scan for specified URLs to identify and address web accessibility issues using BrowserStack's MCP server.
Instructions
Use this tool to start an accessibility scan for a list of URLs on BrowserStack.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the accessibility scan | |
pageURL | Yes | The URL to scan for accessibility issues |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the accessibility scan",
"type": "string"
},
"pageURL": {
"description": "The URL to scan for accessibility issues",
"type": "string"
}
},
"required": [
"name",
"pageURL"
],
"type": "object"
}