accessflow-mcp-server 1.0.13 → 1.0.14
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 +20 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[](http://accessibe.com/accessflow)
|
|
2
2
|
|
|
3
3
|
# AccessFlow MCP Server
|
|
4
4
|
|
|
@@ -68,7 +68,25 @@ Add the following configuration to your MCP client (e.g., VS Code Copilot Agent)
|
|
|
68
68
|
#### Configuration Parameters
|
|
69
69
|
|
|
70
70
|
- **`API_KEY`** (required): Your AccessFlow API key for authentication
|
|
71
|
-
- **`DOMAIN`** (required): The domain of your application being analyzed (e.g., `
|
|
71
|
+
- **`DOMAIN`** (required): The domain of your application being analyzed (e.g., `example.com` - without protocol)
|
|
72
|
+
- **`ENVIRONMENT`** (optional): API environment URL (defaults to `https://accessflow.accessibe.com`)
|
|
73
|
+
|
|
74
|
+
#### Environment Setup
|
|
75
|
+
|
|
76
|
+
For local development, create a `.env` file in the project root:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
# Required: Your domain name (without protocol)
|
|
80
|
+
DOMAIN=your-domain.com
|
|
81
|
+
|
|
82
|
+
# Required: Your AccessFlow API key
|
|
83
|
+
API_KEY=your-api-key-here
|
|
84
|
+
|
|
85
|
+
# Optional: Environment URL (defaults to production)
|
|
86
|
+
ENVIRONMENT=https://accessflow.accessibe.com
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
**Important**: Replace `your-domain.com` and `your-api-key-here` with your actual values before running the server.
|
|
72
90
|
|
|
73
91
|
### 3. Example Usage
|
|
74
92
|
|