Skip to content
VS Code

AudioEye Accessibility Testing for VS Code

com.audioeye/testing-sdk-mcp

Scans live pages with the AudioEye rules engine and maps accessibility issues to JSX source.

client:VS Code transport:stdio runtime:npm

Install AudioEye Accessibility Testing in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "audioeye-testing-sdk-client-id",
      "description": "AUDIOEYE_TESTING_SDK_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "audioeye-testing-sdk-client-token",
      "description": "AUDIOEYE_TESTING_SDK_CLIENT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "audioeye-mcp-workspace",
      "description": "AUDIOEYE_MCP_WORKSPACE",
      "password": true
    }
  ],
  "servers": {
    "testing-sdk-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@audioeye/testing-sdk-mcp"
      ],
      "env": {
        "AUDIOEYE_TESTING_SDK_CLIENT_ID": "${input:audioeye-testing-sdk-client-id}",
        "AUDIOEYE_TESTING_SDK_CLIENT_TOKEN": "${input:audioeye-testing-sdk-client-token}",
        "AUDIOEYE_MCP_WORKSPACE": "${input:audioeye-mcp-workspace}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

AudioEye Accessibility Testing in other clients