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

eaa-accessibility-mcp

v1.0.1

Published

MCP server for EAA Accessibility Scanner — audit WCAG 2.1 AA compliance via Claude Code

Readme

EAA Accessibility MCP Server

MCP (Model Context Protocol) server for EAA Accessibility Scanner — run WCAG 2.1 AA accessibility audits directly from Claude Code, Claude Desktop, or any MCP-compatible AI agent.

Quick Start

Add to your Claude Code settings.json:

{
  "mcpServers": {
    "eaa-scanner": {
      "command": "npx",
      "args": ["-y", "eaa-accessibility-mcp"],
      "env": {
        "MCP_TOKEN": "your-mcp-token-here"
      }
    }
  }
}

Get your MCP token from the EAA Scanner platform: Settings > API Keys > Create New.

What You Can Do

Ask Claude to audit any website for accessibility compliance:

"Scan https://example.com for WCAG 2.1 AA accessibility issues"

"Show me the critical accessibility issues on my site"

"Compare the last two audits to see if accessibility improved"

"Generate an AGID accessibility declaration for the latest audit"

Available Tools

Read Operations

| Tool | Description | |------|-------------| | eaa_list_clients | List all clients in your organization | | eaa_list_projects | List projects, optionally filtered by client | | eaa_list_audits | List audits with filters (project, status) | | eaa_get_audit | Get full audit details with compliance metrics | | eaa_get_audit_issues | Get issues filtered by severity or WCAG criterion |

Write Operations

| Tool | Description | |------|-------------| | eaa_create_client | Create a new client (idempotent) | | eaa_create_project | Create a new project under a client (idempotent) | | eaa_run_scan | Start a WCAG 2.1 AA accessibility scan | | eaa_update_client | Update client information | | eaa_update_project | Update project details | | eaa_sign_audit | Digitally sign a completed audit |

Analytics

| Tool | Description | |------|-------------| | eaa_get_scan_status | Monitor scan progress in real-time | | eaa_get_compliance_summary | Compliance overview with trend analysis | | eaa_compare_audits | Compare two audits for progress/regression | | eaa_find_critical_issues | Find critical issues with suggested fixes | | eaa_get_platform_stats | Aggregated platform KPIs |

Reports & Compliance

| Tool | Description | |------|-------------| | eaa_generate_report | Generate professional HTML/PDF reports | | eaa_generate_agid_declaration | Generate AGID accessibility declaration (Italian law) |

Resources

| URI | Description | |-----|-------------| | eaa://compliance-levels | Compliance level definitions (conforme/parzialmente/non conforme) | | eaa://scanner-capabilities | Available scanners and WCAG coverage |

Scanners

EAA Scanner uses 5 automated testing engines:

  • Pa11y — HTML5/ARIA validation, heading structure, contrast
  • Axe-core — Gold standard automated testing, high precision
  • Google Lighthouse — Accessibility + performance audit
  • WAVE WebAIM — Visual accessibility evaluation
  • QualWeb — ACT Rules + WCAG Techniques engine

Automated scanners cover approximately 30-40% of WCAG 2.1 AA success criteria.

Compliance Standards

  • WCAG 2.1 Level AA — Web Content Accessibility Guidelines
  • EN 301 549 v3.2.1 — European harmonized standard for ICT accessibility
  • Directive (EU) 2019/882 — European Accessibility Act (EAA)
  • AGID Guidelines — Italian accessibility declaration requirements

Compliance Levels

| Level | Score | Condition | |-------|-------|-----------| | Conforme | >= 85% | AND zero critical errors | | Parzialmente conforme | 60-84% | No critical errors | | Non conforme | < 60% | OR critical errors present |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | MCP_TOKEN | Yes | Your MCP API key from the EAA Scanner platform | | EAA_API_URL | No | Custom backend URL (default: https://eaa.principi.it) |

Multi-Site Setup

You can connect multiple sites with different tokens:

{
  "mcpServers": {
    "site-a": {
      "command": "npx",
      "args": ["-y", "eaa-accessibility-mcp"],
      "env": { "MCP_TOKEN": "mcp_token-for-site-a" }
    },
    "site-b": {
      "command": "npx",
      "args": ["-y", "eaa-accessibility-mcp"],
      "env": { "MCP_TOKEN": "mcp_token-for-site-b" }
    }
  }
}

Security

  • MCP tokens are scoped per organization with granular permissions
  • Tokens can be revoked instantly from the platform
  • All communication uses HTTPS
  • No credentials stored in the npm package
  • Token travels only in your local environment variables

Example Conversation

You: Scan principiadv.com for accessibility issues

Claude: I'll start an accessibility scan using EAA Scanner.
        [calls eaa_run_scan with URLs]
        Scan started! Monitoring progress...
        [calls eaa_get_scan_status]
        Scan complete: 73% compliance score.

        3 critical issues found:
        1. Missing alt text on 12 images (WCAG 1.1.1)
        2. Insufficient color contrast on navigation (WCAG 1.4.3)
        3. Missing form labels on contact form (WCAG 1.3.1)

        Would you like me to generate a full report or AGID declaration?

License

MIT

Links