@lindblad/complai-mcp 0.1.2 → 0.1.4

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/README.md +27 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,37 @@
1
1
  # COMPLAI MCP Server
2
2
 
3
- An MCP (Model Context Protocol) server that provides COMPLAI compliance data to AI assistants like Cursor and Claude Desktop.
3
+ An MCP (Model Context Protocol) server that provides COMPLAI compliance data to AI assistants.
4
4
 
5
5
  **Package:** `@lindblad/complai-mcp`
6
6
 
7
+ ## Supported AI Tools
8
+
9
+ - **Claude Desktop** - Anthropic's desktop app
10
+ - **Cursor** - AI-powered code editor
11
+ - **VS Code** - With built-in MCP support
12
+ - **Windsurf** - AI coding assistant
13
+ - Any tool supporting the [Model Context Protocol](https://modelcontextprotocol.io/)
14
+
7
15
  ## Quick Start
8
16
 
9
- Add to your Cursor config (`.cursor/mcp.json`):
17
+ ### Claude Desktop
18
+
19
+ Add to `%APPDATA%\Claude\claude_desktop_config.json` (Windows) or `~/Library/Application Support/Claude/claude_desktop_config.json` (Mac):
20
+
21
+ ```json
22
+ {
23
+ "mcpServers": {
24
+ "complai": {
25
+ "command": "npx",
26
+ "args": ["-y", "@lindblad/complai-mcp"]
27
+ }
28
+ }
29
+ }
30
+ ```
31
+
32
+ ### Cursor / VS Code
33
+
34
+ Add to `.cursor/mcp.json` or `.vscode/mcp.json`:
10
35
 
11
36
  ```json
12
37
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lindblad/complai-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server providing COMPLAI compliance overview tools for AI assistants",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",