@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.
Files changed (2) hide show
  1. package/README.md +35 -8
  2. 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
+ [![npm version](https://img.shields.io/npm/v/@giauphan/codeatlas-mcp.svg)](https://www.npmjs.com/package/@giauphan/codeatlas-mcp)
5
6
  ![License](https://img.shields.io/badge/License-MIT-green.svg)
6
7
  ![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue?logo=typescript)
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
- git clone https://github.com/giauphan/codeatlas-mcp.git
32
- cd codeatlas-mcp
33
- npm install
34
- npm run build
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": "node",
48
- "args": ["/absolute/path/to/codeatlas-mcp/dist/index.js"]
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": "node",
61
- "args": ["/absolute/path/to/codeatlas-mcp/dist/index.js"]
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giauphan/codeatlas-mcp",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "MCP server for CodeAtlas — exposes code analysis data to AI assistants via Model Context Protocol",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",