accessibility-server-mcp 1.0.4 → 1.0.5
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.
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -103,7 +103,7 @@ export class AccessibilityMCPServer {
|
|
|
103
103
|
this.browserManager = new BrowserManager();
|
|
104
104
|
this.server = new Server({
|
|
105
105
|
name: 'accessibility-mcp-server',
|
|
106
|
-
version: '1.0.
|
|
106
|
+
version: '1.0.5',
|
|
107
107
|
}, {
|
|
108
108
|
capabilities: {
|
|
109
109
|
tools: {},
|
|
@@ -488,7 +488,7 @@ const args = process.argv.slice(2);
|
|
|
488
488
|
// Show help information
|
|
489
489
|
if (args.includes('--help') || args.includes('-h')) {
|
|
490
490
|
console.log(`
|
|
491
|
-
Accessibility MCP Server v1.0.
|
|
491
|
+
Accessibility MCP Server v1.0.5
|
|
492
492
|
A Model Context Protocol server for web accessibility testing with WCAG compliance.
|
|
493
493
|
|
|
494
494
|
Usage:
|
|
@@ -523,7 +523,7 @@ For more information, visit: https://github.com/your-repo/accessibility-mcp
|
|
|
523
523
|
}
|
|
524
524
|
// Show version
|
|
525
525
|
if (args.includes('--version') || args.includes('-v')) {
|
|
526
|
-
console.log('1.0.
|
|
526
|
+
console.log('1.0.5');
|
|
527
527
|
process.exit(0);
|
|
528
528
|
}
|
|
529
529
|
// Set MCP mode environment variable when running as MCP server
|