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-voiceover-auditor

v1.0.1

Published

MCP server for voiceover accessibility auditing — analyzing and improving screen reader output for better accessibility

Downloads

469

Readme

@weaaare/mcp-voiceover-auditor

MCP (Model Context Protocol) server for screen reader accessibility audits on macOS. Drives VoiceOver through AppleScript, letting an AI agent navigate pages exactly as a screen-reader user would: read element announcements, check focus order, detect keyboard traps, and log structured WCAG findings — all without a human manually operating VoiceOver.

Can help cover up to 12 WCAG 2.2 success criteria (1.1.1, 1.3.1, 2.1.1, 2.1.2, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.4.6, 3.3.1, 3.3.2, 4.1.2).

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 | | --- | --- | | check_setup | Verify VoiceOver environment setup (support, default screen reader, AppleScript readiness) | | voiceover_start | Start VoiceOver before running navigation and audit commands | | voiceover_stop | Stop VoiceOver and clean up the session | | voiceover_commander | Execute native VoiceOver commander commands for robust navigation | | voiceover_perform | Execute keyboard-based VoiceOver navigation commands | | voiceover_next | Move the VoiceOver cursor to the next item | | voiceover_previous | Move the VoiceOver cursor to the previous item | | voiceover_act | Perform default action for focused item (VO-Space equivalent) | | voiceover_interact | Start interacting with the current container item | | voiceover_stop_interacting | Stop interacting with the current container item | | voiceover_press | Press a key on the focused item (e.g. Enter, Tab, ArrowDown) | | voiceover_type | Type text into the currently focused item | | voiceover_item_text | Get text of the currently focused VoiceOver item | | voiceover_last_spoken_phrase | Get the most recent phrase spoken by VoiceOver | | voiceover_spoken_phrase_log | Get full spoken phrase history for this session | | voiceover_item_text_log | Get full visited item text history for this session | | voiceover_clear_spoken_phrase_log | Clear the spoken phrase log for this session | | voiceover_clear_item_text_log | Clear the item text log for this session | | voiceover_click | Perform a mouse click at the current position | | voiceover_detect | Detect whether VoiceOver is supported on the current system | | voiceover_default | Check whether VoiceOver is the default screen reader | | macos_activate_application | Activate a macOS application by name | | macos_get_active_application | Get the currently active macOS application | | focus_ensure_browser | Ensure browser is focused before page interaction | | focus_record | Save a focus breadcrumb for recovery during audits | | focus_last_known | Retrieve the last known focus position | | focus_history | Retrieve complete focus breadcrumb history | | start_audit | Start a new audit session with URL, WCAG level, and screen reader | | log_finding | Log violation, warning, or pass with WCAG criteria and recommendation | | get_audit_status | Get current audit progress, counts, and duration | | get_findings | Retrieve findings from current or last session | | end_audit | End audit session and generate summary statistics | | generate_report | Generate audit report in markdown, json, or csv |

Requirements

  • macOS with VoiceOver
  • AppleScript enabled for VoiceOver: VoiceOver Utility → General → Allow VoiceOver to be controlled with AppleScript
  • Node.js >= 18

Getting started

Standard config works in most MCP clients:

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

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

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

Or install via the VS Code CLI:

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

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

claude mcp add voiceover-auditor npx -y @weaaare/mcp-voiceover-auditor

Go to Cursor SettingsMCPAdd new MCP Server. Use command type with npx -y @weaaare/mcp-voiceover-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": {
    "voiceover-auditor": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@weaaare/mcp-voiceover-auditor"],
      "disabled": false
    }
  }
}

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

codex mcp add voiceover-auditor npx "-y" "@weaaare/mcp-voiceover-auditor"

Or edit ~/.codex/config.toml:

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

Go to Advanced settingsExtensionsAdd custom extension. Use type STDIO and set the command to npx -y @weaaare/mcp-voiceover-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 | voiceover_item_text, voiceover_last_spoken_phrase, log_finding | | 1.3.1 | Info and Relationships | voiceover_perform, voiceover_commander, log_finding | | 2.1.1 | Keyboard | voiceover_press, focus_record, log_finding | | 2.1.2 | No Keyboard Trap | voiceover_press, focus_last_known, log_finding | | 2.4.1 | Bypass Blocks | voiceover_commander, voiceover_perform, log_finding | | 2.4.2 | Page Titled | voiceover_item_text, voiceover_last_spoken_phrase, log_finding | | 2.4.3 | Focus Order | focus_record, focus_history, log_finding | | 2.4.4 | Link Purpose (In Context) | voiceover_perform, voiceover_commander, log_finding | | 2.4.6 | Headings and Labels | voiceover_perform, voiceover_item_text, log_finding | | 3.3.1 | Error Identification | voiceover_last_spoken_phrase, voiceover_item_text, log_finding | | 3.3.2 | Labels or Instructions | voiceover_item_text, voiceover_perform, log_finding | | 4.1.2 | Name, Role, Value | voiceover_last_spoken_phrase, voiceover_item_text, log_finding |

Acknowledgements

License

MIT - weAAAre