accessibility-scanner-mcp 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/server.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "accessibility-scanner-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
+ "mcpName": "io.github.Bishop81/accessibility-scanner-mcp",
4
5
  "description": "MCP server that scans web pages for WCAG accessibility issues with axe-core, so AI agents can audit and fix accessibility. By accessibilityscanner.app",
5
6
  "type": "module",
6
7
  "bin": {
package/server.mjs CHANGED
@@ -136,7 +136,7 @@ function formatReport(s) {
136
136
  }
137
137
 
138
138
  const server = new Server(
139
- { name: 'accessibility-scanner', version: '0.1.0' },
139
+ { name: 'accessibility-scanner', version: '0.1.2' },
140
140
  { capabilities: { tools: {} } },
141
141
  );
142
142