npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@weaaare/mcp-virtual-screen-reader-auditor

v0.1.1

Published

MCP server for virtual screen reader accessibility auditing — headless browser-based screen reader simulation that works on any OS

Readme

@weaaare/mcp-virtual-screen-reader-auditor

MCP (Model Context Protocol) server for headless virtual screen reader accessibility audits. Works on any OS — no native screen reader required. Launches a real browser, injects a virtual screen reader, and navigates the live accessibility tree including dynamic/SPA content.

Can help cover up to 12 WCAG 2.2 success criteria using the same audit, findings, and reporting framework as @weaaare/mcp-voiceover-auditor.

Important: This tool does not replace a manual audit by an accessibility specialist, nor does it substitute real testing with assistive-technology users. It is a fast feedback loop that catches common issues early — a complement, never a replacement.

Tools

| Tool | Description | | --- | --- | | virtual_start | Start the Virtual Screen Reader on a URL or raw HTML (launches headless browser) | | virtual_stop | Stop the Virtual Screen Reader and release resources | | virtual_next | Move cursor to the next item in the accessibility tree | | virtual_previous | Move cursor to the previous item in the accessibility tree | | virtual_act | Perform default action for the current item (e.g., activate a link/button) | | virtual_interact | Interact with the current container item | | virtual_stop_interacting | Stop interacting with the current container item | | virtual_press | Press a key on the focused item (e.g. Enter, Tab, ArrowDown) | | virtual_type | Type text into the currently focused item | | virtual_perform | Semantic navigation by element type: headings, links, landmarks, forms, figures | | virtual_item_text | Get text of the item under the Virtual Screen Reader cursor | | virtual_last_spoken_phrase | Get the last phrase spoken by the Virtual Screen Reader | | virtual_spoken_phrase_log | Get full spoken phrase history for this session | | virtual_item_text_log | Get full visited item text history for this session | | virtual_clear_spoken_phrase_log | Clear the spoken phrase log | | virtual_clear_item_text_log | Clear the visited item text log | | virtual_click | Click the mouse at the current position | | start_audit | Start a structured audit session with metadata | | log_finding | Log violations/warnings/passes with WCAG criteria and recommendations | | get_audit_status | Get current audit progress and finding counters | | get_findings | Retrieve findings from current or latest session | | end_audit | End audit session and return summary data | | generate_report | Generate reports in Markdown, JSON, or CSV |

Getting started

Standard config works in most MCP clients:

{
  "mcpServers": {
    "virtual-screen-reader-auditor": {
      "command": "npx",
      "args": ["-y", "@weaaare/mcp-virtual-screen-reader-auditor"]
    }
  }
}

Add to your project's .vscode/mcp.json (or user-level settings.json under "mcp"):

{
  "servers": {
    "virtual-screen-reader-auditor": {
      "command": "npx",
      "args": ["-y", "@weaaare/mcp-virtual-screen-reader-auditor"]
    }
  }
}

Or install via the VS Code CLI:

code --add-mcp '{"name":"virtual-screen-reader-auditor","command":"npx","args":["-y","@weaaare/mcp-virtual-screen-reader-auditor"]}'

Follow the MCP install guide. Add to your claude_desktop_config.json using the standard config above.

claude mcp add virtual-screen-reader-auditor npx -y @weaaare/mcp-virtual-screen-reader-auditor

Go to Cursor SettingsMCPAdd new MCP Server. Use command type with npx -y @weaaare/mcp-virtual-screen-reader-auditor.

Or add to .cursor/mcp.json using the standard config above.

Follow Windsurf MCP documentation. Use the standard config above.

Add to your cline_mcp_settings.json:

{
  "mcpServers": {
    "virtual-screen-reader-auditor": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@weaaare/mcp-virtual-screen-reader-auditor"],
      "disabled": false
    }
  }
}

Follow the MCP Servers documentation. Add to .kiro/settings/mcp.json using the standard config above.

codex mcp add virtual-screen-reader-auditor npx "-y" "@weaaare/mcp-virtual-screen-reader-auditor"

Or edit ~/.codex/config.toml:

[mcp_servers.virtual-screen-reader-auditor]
command = "npx"
args = ["-y", "@weaaare/mcp-virtual-screen-reader-auditor"]

Go to Advanced settingsExtensionsAdd custom extension. Use type STDIO and set the command to npx -y @weaaare/mcp-virtual-screen-reader-auditor.

Go to SettingsAIManage MCP Servers+ Add. Use the standard config above.

Follow the MCP install guide. Use the standard config above.

WCAG criteria covered

| SC | Name | Tools | | --- | --- | --- | | 1.1.1 | Non-text Content | virtual_item_text, virtual_last_spoken_phrase, log_finding | | 1.3.1 | Info and Relationships | virtual_perform, virtual_item_text, log_finding | | 2.1.1 | Keyboard | virtual_press, virtual_act, log_finding | | 2.1.2 | No Keyboard Trap | virtual_press, virtual_next, log_finding | | 2.4.1 | Bypass Blocks | virtual_perform, virtual_next, log_finding | | 2.4.2 | Page Titled | virtual_item_text, virtual_last_spoken_phrase, log_finding | | 2.4.3 | Focus Order | virtual_next, virtual_previous, log_finding | | 2.4.4 | Link Purpose (In Context) | virtual_perform, virtual_item_text, log_finding | | 2.4.6 | Headings and Labels | virtual_perform, virtual_item_text, log_finding | | 3.3.1 | Error Identification | virtual_last_spoken_phrase, virtual_item_text, log_finding | | 3.3.2 | Labels or Instructions | virtual_item_text, virtual_perform, log_finding | | 4.1.2 | Name, Role, Value | virtual_last_spoken_phrase, virtual_item_text, log_finding |

Acknowledgements

License

MIT - weAAAre