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

gridwork-siteaudit

v1.0.1

Published

MCP server that audits websites for accessibility (WCAG/EAA), performance, SEO, design quality, and mobile responsiveness

Readme

@gridwork/siteaudit

An MCP server that audits any website for accessibility (WCAG 2.1 AA / EAA), performance, SEO, design quality, and mobile responsiveness. Get actionable scores, grades, and prioritized fixes.

Built for the compliance era: EU Accessibility Act enforcement is live, EU AI Act deadline is August 2026. Every website needs auditing.

By Gridwork

Tools

| Tool | Description | |------|-------------| | audit_site | Full comprehensive audit across all 5 categories | | quick_check | Scores and grades only — fast triage | | audit_accessibility | WCAG 2.1 AA focused audit with criterion references | | audit_performance | Performance analysis with actionable fixes | | audit_seo | SEO check: meta, OG, structured data, etc. | | compare_sites | Side-by-side comparison of two URLs |

Install

Claude Code

claude mcp add @gridwork/siteaudit -- node /path/to/@gridwork/siteaudit/dist/index.js

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "@gridwork/siteaudit": {
      "command": "node",
      "args": ["/path/to/@gridwork/siteaudit/dist/index.js"]
    }
  }
}

Cursor / Windsurf

Add to your MCP config:

{
  "@gridwork/siteaudit": {
    "command": "node",
    "args": ["/path/to/@gridwork/siteaudit/dist/index.js"]
  }
}

Build from Source

npm install
npm run build

What It Checks

Accessibility (30% of score)

  • Language attribute, image alt text, form labels
  • Heading hierarchy, link text quality, ARIA landmarks
  • Skip navigation, tab order, auto-playing media
  • WCAG criterion references on every issue

Performance (20%)

  • Load time, page size, DOM complexity
  • Render-blocking resources, compression, caching
  • Image optimization (dimensions, lazy loading)
  • Resource preloading and preconnect hints

SEO (20%)

  • Title, meta description, heading structure
  • Open Graph, Twitter Cards, canonical URL
  • Structured data (JSON-LD), favicon
  • Internal linking, robots directives

Design Quality (15%)

  • Font consistency, color system coherence
  • Touch target sizes, text readability
  • Visual hierarchy, CTA presence
  • Dark mode support, branding elements

Mobile (15%)

  • Viewport configuration, zoom support
  • Fixed-width overflow detection
  • Responsive images, media queries
  • Input types for mobile keyboards

EAA Compliance Status

Every audit includes an EAA (European Accessibility Act) compliance assessment:

  • COMPLIANT: Meets WCAG 2.1 AA baseline
  • PARTIAL: Some issues to resolve
  • NON-COMPLIANT: Critical accessibility failures

License

MIT