accessflow-mcp-server 1.0.4 → 1.0.6
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/README.md +4 -70
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ A Model Context Protocol (MCP) server that provides intelligent accessibility is
|
|
|
4
4
|
|
|
5
5
|
## 🎯 Purpose
|
|
6
6
|
|
|
7
|
-
The AccessFlow MCP Server enables AI
|
|
7
|
+
The AccessFlow MCP Server enables AI clients (like Copilot) to:
|
|
8
8
|
|
|
9
9
|
- **Identify Priority Issues**: Get the most urgent accessibility issues ordered by severity and impact
|
|
10
10
|
- **Provide Fix Guidance**: Generate detailed remediation instructions with code examples
|
|
@@ -43,17 +43,9 @@ Provides detailed remediation guidance for a specific accessibility issue.
|
|
|
43
43
|
|
|
44
44
|
## 📋 Usage
|
|
45
45
|
|
|
46
|
-
###
|
|
46
|
+
### Configuration
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
npm install -g accessflow-mcp-server
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
### 2. Configuration
|
|
55
|
-
|
|
56
|
-
Add the following configuration to your MCP client (e.g., Claude Desktop):
|
|
48
|
+
Add the following configuration to your MCP client (e.g., VS Code Copilot Agent):
|
|
57
49
|
|
|
58
50
|
```json
|
|
59
51
|
{
|
|
@@ -92,68 +84,10 @@ Once configured, you can interact with the server through your MCP client:
|
|
|
92
84
|
"Get remediation guidance for issue: Decorative-Content-6d277a13ba"
|
|
93
85
|
```
|
|
94
86
|
|
|
95
|
-
##
|
|
87
|
+
## Supported Clients
|
|
96
88
|
|
|
97
89
|
This MCP server works with AI agents in IDEs and other MCP-compatible clients:
|
|
98
90
|
|
|
99
91
|
- **VS Code Copilot**: Integrates with GitHub Copilot in VS Code
|
|
100
92
|
- **Cursor**: Works with Cursor's AI assistant
|
|
101
|
-
- **Claude Desktop**: Direct integration with Claude Desktop app
|
|
102
93
|
- **Other MCP Clients**: Any application supporting the Model Context Protocol
|
|
103
|
-
|
|
104
|
-
## 📚 Integration Examples
|
|
105
|
-
|
|
106
|
-
### Claude Desktop Configuration
|
|
107
|
-
|
|
108
|
-
Add to your Claude Desktop `claude_desktop_config.json`:
|
|
109
|
-
|
|
110
|
-
```json
|
|
111
|
-
{
|
|
112
|
-
"mcpServers": {
|
|
113
|
-
"flow-mcp": {
|
|
114
|
-
"command": "npx",
|
|
115
|
-
"args": ["-y", "accessflow-mcp-server"],
|
|
116
|
-
"env": {
|
|
117
|
-
"API_KEY": "flow-1uwLV9VHxuVDyaK8Jqw p0JkEwMmxhrv",
|
|
118
|
-
"DOMAIN": "https://reap-app.netlify.app/"
|
|
119
|
-
},
|
|
120
|
-
"type": "stdio"
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
### Typical Workflow
|
|
127
|
-
|
|
128
|
-
1. **Assessment**: Ask Claude to "analyze my site's accessibility issues"
|
|
129
|
-
2. **Prioritization**: Review the most urgent issues by severity
|
|
130
|
-
3. **Remediation**: Get detailed fix guidance for specific issues
|
|
131
|
-
4. **Implementation**: Apply the suggested code changes
|
|
132
|
-
5. **Verification**: Re-run analysis to confirm fixes
|
|
133
|
-
|
|
134
|
-
## 🚀 Features
|
|
135
|
-
|
|
136
|
-
- ✅ **Real-time Analysis**: Connect to live AccessFlow scanning data
|
|
137
|
-
- ✅ **WCAG Compliance**: Detailed WCAG 2.1 AA/AAA references
|
|
138
|
-
- ✅ **Code Examples**: Practical HTML/CSS/JS fix suggestions
|
|
139
|
-
- ✅ **Priority Ranking**: Smart issue prioritization by impact
|
|
140
|
-
- ✅ **Developer-Friendly**: Integrates seamlessly with existing workflows
|
|
141
|
-
- ✅ **Comprehensive**: Covers all major accessibility categories
|
|
142
|
-
|
|
143
|
-
## 📖 API Reference
|
|
144
|
-
|
|
145
|
-
For detailed API documentation and tool specifications, see [TOOL_REFERENCE.md](./TOOL_REFERENCE.md).
|
|
146
|
-
|
|
147
|
-
## 🆘 Support
|
|
148
|
-
|
|
149
|
-
- **Documentation**: [AccessFlow Docs](https://docs.accessflow.com)
|
|
150
|
-
- **Issues**: Report bugs and feature requests on GitHub
|
|
151
|
-
- **Contact**: Support team for API access and configuration help
|
|
152
|
-
|
|
153
|
-
## 📄 License
|
|
154
|
-
|
|
155
|
-
ISC License - see LICENSE file for details.
|
|
156
|
-
|
|
157
|
-
---
|
|
158
|
-
|
|
159
|
-
**Keywords**: accessibility, WCAG, MCP, Model Context Protocol, AI assistant, web development, compliance, remediation
|