@lindblad/complai-mcp 0.1.3 → 0.1.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/README.md +5 -30
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,8 @@ An MCP (Model Context Protocol) server that provides COMPLAI compliance data to
|
|
|
8
8
|
|
|
9
9
|
- **Claude Desktop** - Anthropic's desktop app
|
|
10
10
|
- **Cursor** - AI-powered code editor
|
|
11
|
+
- **VS Code** - With built-in MCP support
|
|
11
12
|
- **Windsurf** - AI coding assistant
|
|
12
|
-
- **Cline** - VS Code extension
|
|
13
13
|
- Any tool supporting the [Model Context Protocol](https://modelcontextprotocol.io/)
|
|
14
14
|
|
|
15
15
|
## Quick Start
|
|
@@ -29,11 +29,9 @@ Add to `%APPDATA%\Claude\claude_desktop_config.json` (Windows) or `~/Library/App
|
|
|
29
29
|
}
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
### Cursor / VS Code
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
Add to `.cursor/mcp.json`:
|
|
34
|
+
Add to `.cursor/mcp.json` or `.vscode/mcp.json`:
|
|
37
35
|
|
|
38
36
|
```json
|
|
39
37
|
{
|
|
@@ -136,34 +134,11 @@ If you have access to multiple organizations:
|
|
|
136
134
|
}
|
|
137
135
|
```
|
|
138
136
|
|
|
139
|
-
##
|
|
140
|
-
|
|
141
|
-
Defaults connect to COMPLAI test environment. Override with environment variables:
|
|
137
|
+
## Environment Variables
|
|
142
138
|
|
|
143
139
|
| Variable | Description |
|
|
144
140
|
|----------|-------------|
|
|
145
|
-
| `
|
|
146
|
-
| `COMPLAI_AUTH0_DOMAIN` | Auth0 domain |
|
|
147
|
-
| `COMPLAI_AUTH0_CLIENT_ID` | Auth0 client ID |
|
|
148
|
-
| `COMPLAI_AUTH0_AUDIENCE` | Auth0 audience |
|
|
149
|
-
| `COMPLAI_ORGANIZATION_ID` | Default organization ID |
|
|
150
|
-
|
|
151
|
-
Example with custom config:
|
|
152
|
-
|
|
153
|
-
```json
|
|
154
|
-
{
|
|
155
|
-
"mcpServers": {
|
|
156
|
-
"complai": {
|
|
157
|
-
"command": "npx",
|
|
158
|
-
"args": ["-y", "@lindblad/complai-mcp"],
|
|
159
|
-
"env": {
|
|
160
|
-
"COMPLAI_API_URL": "https://api.complai.com",
|
|
161
|
-
"COMPLAI_AUTH0_DOMAIN": "login.complai.com"
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
```
|
|
141
|
+
| `COMPLAI_ORGANIZATION_ID` | Skip org selection by setting a default organization ID |
|
|
167
142
|
|
|
168
143
|
## Security
|
|
169
144
|
|