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

accessflow-mcp-server

v2.3.6

Published

AccessFlow MCP Server for accessibility issue remediation

Readme

accessFlow MCP

AccessFlow MCP Server

The accessFlow Model Context Protocol (MCP) server provides intelligent accessibility issue analysis and remediation guidance. It connects AI clients to the accessFlow platform to help developers identify, prioritize, and fix accessibility issues in their web applications.

Purpose

The accessFlow MCP Server enables AI clients (like Copilot) to:

  • Identify priority issues: Get the most urgent accessibility issues, ordered by severity and impact.
  • Provide fix guidance: Generate detailed remediation instructions with code examples.
  • Align with WCAG: Reference specific WCAG guidelines and criteria for each issue.
  • Streamline workflow: Get detailed accessibility insights and fix recommendations directly in your IDE.

API Key Setup

Generate a token in accessFlow to set the API key.

To generate a token:

  1. Go to your Profile menu in the top right corner and select Token management.
  2. Select Generate token.
  3. Enter a token name.
  4. Select AI MCP token and then Generate token.
  5. Copy the token and store it securely. You won't be able to see it again.

Configuration

Add the configuration to your MCP client (this varies by client), usually in the file mcp.json.

Configure the accessFlow MCP server locally

Enter your copied token into API_KEY:

{
  "mcpServers": {
    "flow-mcp": {
      "command": "npx",
      "args": ["-y", "accessflow-mcp-server"],
      "env": {
        "API_KEY": "your-accessflow-api-key",
        "DOMAIN": "https://your-app-domain.com"
      },
      "type": "stdio"
    }
  }
}

Configuration Parameters

| Parameter | Required | Description | |-----------|----------|-------------| | API_KEY | Yes | Your accessFlow API key for authentication | | DOMAIN | Yes | The domain of your application being analyzed (e.g., https://example.com) |

Connect to the accessFlow MCP server remotely

Connect remotely to the accessFlow MCP server: flow-mcp.accessibe.com

{
  "mcpServers": {
    "flow-mcp": {
      "type": "http",
      "url": "https://flow-mcp.accessibe.com/mcp",
      "headers": {
        "Authorization": "Bearer <FLOW_MCP_API_KEY>",
        "X-Domain": "mysite.com"
      }
    }
  }
}

Configuration Parameters

| Parameter | Required | Description | |-----------|----------|-------------| | Authorization | Yes | Your accessFlow bearer token and API key for authentication | | X-Domain | Yes | The domain of your application being analyzed (e.g., https://example.com) |

MCP Server Commands

Once configured, you can run commands through your MCP client to identify accessibility issues and get remediation guidance. You can use natural language or the command name.

Get most urgent issues

getMostUrgentIssues

Retrieves the most critical accessibility issues, prioritized by:

  1. Severity: Extreme → High → Medium → Low
  2. Site impact: Number of locations affected across the site
  3. Page impact: Number of occurrences on individual pages

Parameters: None (uses the configured domain)

Returns: JSON data with structured issue information including severity, WCAG level, occurrence counts, and unique identifiers.

Example:

"Show me the most urgent accessibility issues for my site"

Get issue remediation guidance

getIssueRemediation

Provides detailed remediation guidance for a specific accessibility issue.

Parameters:

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | issueDisplayName | string | Yes | The unique identifier for the accessibility issue |

Returns: Comprehensive fix guidance including:

  • Problem summary and WCAG references
  • Current problematic code
  • Suggested code fixes with examples
  • Step-by-step remediation instructions
  • Links to tutorials and additional resources

Example:

"Get remediation guidance for issue: Decorative-Content-6d277a13ba"

Mark an issue as resolved

resolveIssue

Marks the specified issue as resolved in accessFlow.

Note: If the next audit still detects this issue, it will be reopened automatically.

Parameters:

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | issueDisplayName | string | Yes | The unique identifier for the accessibility issue |

Example:

"Resolve issue id Footer-Landmark-e3c792e8b8"

Supported Clients

This MCP server works with AI agents in IDEs and other MCP-compatible clients:

  • VS Code Copilot: Integrates with Microsoft Copilot in VS Code
  • Cursor: Works with Cursor's AI assistant
  • Other MCP Clients: Any application supporting the Model Context Protocol