@giauphan/codeatlas-mcp 1.2.2 → 1.2.3
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 +35 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**MCP server for [CodeAtlas](https://github.com/giauphan/CodeAtlas) — Expose code analysis data to AI assistants**
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/@giauphan/codeatlas-mcp)
|
|
5
6
|

|
|
6
7
|

|
|
7
8
|
|
|
@@ -28,10 +29,13 @@ A standalone [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) se
|
|
|
28
29
|
## Installation
|
|
29
30
|
|
|
30
31
|
```bash
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
npm install -g @giauphan/codeatlas-mcp
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Or use directly with `npx` (no install needed):
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npx @giauphan/codeatlas-mcp
|
|
35
39
|
```
|
|
36
40
|
|
|
37
41
|
## Configuration
|
|
@@ -44,8 +48,8 @@ Add to your AI assistant's MCP config:
|
|
|
44
48
|
{
|
|
45
49
|
"mcpServers": {
|
|
46
50
|
"codeatlas": {
|
|
47
|
-
"command": "
|
|
48
|
-
"args": ["/
|
|
51
|
+
"command": "npx",
|
|
52
|
+
"args": ["-y", "@giauphan/codeatlas-mcp"]
|
|
49
53
|
}
|
|
50
54
|
}
|
|
51
55
|
}
|
|
@@ -57,8 +61,21 @@ Add to your AI assistant's MCP config:
|
|
|
57
61
|
{
|
|
58
62
|
"mcpServers": {
|
|
59
63
|
"codeatlas": {
|
|
60
|
-
"command": "
|
|
61
|
-
"args": ["/
|
|
64
|
+
"command": "npx",
|
|
65
|
+
"args": ["-y", "@giauphan/codeatlas-mcp"]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Cursor (`.cursor/mcp.json`)
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"mcpServers": {
|
|
76
|
+
"codeatlas": {
|
|
77
|
+
"command": "npx",
|
|
78
|
+
"args": ["-y", "@giauphan/codeatlas-mcp"]
|
|
62
79
|
}
|
|
63
80
|
}
|
|
64
81
|
}
|
|
@@ -72,6 +89,16 @@ Add to your AI assistant's MCP config:
|
|
|
72
89
|
|
|
73
90
|
The server auto-discovers projects by scanning `~/` for `.codeatlas/analysis.json` files.
|
|
74
91
|
|
|
92
|
+
## Development
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
git clone https://github.com/giauphan/codeatlas-mcp.git
|
|
96
|
+
cd codeatlas-mcp
|
|
97
|
+
npm install
|
|
98
|
+
npm run build
|
|
99
|
+
npm start
|
|
100
|
+
```
|
|
101
|
+
|
|
75
102
|
## License
|
|
76
103
|
|
|
77
104
|
[MIT](LICENSE)
|
package/package.json
CHANGED