aidex-mcp 1.4.1 → 1.4.2

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 (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +10 -9
  3. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to AiDex will be documented in this file.
4
4
 
5
+ ## [1.4.2] - 2026-01-31
6
+
7
+ ### Added
8
+ - **npm package**: Published as `aidex-mcp` on npm (`npm install -g aidex-mcp`)
9
+ - **Dual CLI commands**: Both `aidex` and `aidex-mcp` work as command names
10
+ - **npm-publish.bat**: Script for easy npm publishing
11
+
12
+ ### Changed
13
+ - README updated with npm install instructions
14
+
5
15
  ## [1.4.1] - 2026-01-31
6
16
 
7
17
  ### Fixed
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # AiDex
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/aidex-mcp.svg)](https://www.npmjs.com/package/aidex-mcp)
3
4
  [![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
4
5
  [![Node.js 18+](https://img.shields.io/badge/Node.js-18%2B-brightgreen.svg)](https://nodejs.org/)
5
6
  [![MCP Server](https://img.shields.io/badge/MCP-Server-blue.svg)](https://modelcontextprotocol.io/)
@@ -108,9 +109,7 @@ The index lives in `.aidex/index.db` (SQLite) - fast, portable, no external depe
108
109
  ### 1. Install
109
110
 
110
111
  ```bash
111
- git clone https://github.com/CSCSoftware/AiDex.git
112
- cd AiDex
113
- npm install && npm run build
112
+ npm install -g aidex-mcp
114
113
  ```
115
114
 
116
115
  ### 2. Register with your AI assistant
@@ -121,8 +120,7 @@ npm install && npm run build
121
120
  "mcpServers": {
122
121
  "aidex": {
123
122
  "type": "stdio",
124
- "command": "node",
125
- "args": ["/path/to/AiDex/build/index.js"],
123
+ "command": "aidex",
126
124
  "env": {}
127
125
  }
128
126
  }
@@ -134,13 +132,14 @@ npm install && npm run build
134
132
  {
135
133
  "mcpServers": {
136
134
  "aidex": {
137
- "command": "node",
138
- "args": ["/path/to/AiDex/build/index.js"]
135
+ "command": "aidex"
139
136
  }
140
137
  }
141
138
  }
142
139
  ```
143
140
 
141
+ > **Note:** Both `aidex` and `aidex-mcp` work as command names.
142
+
144
143
  > **Important:** The server name in your config determines the MCP tool prefix. Use `"aidex"` as shown above — this gives you tool names like `aidex_query`, `aidex_signature`, etc. Using a different name (e.g., `"codegraph"`) would change the prefix accordingly.
145
144
 
146
145
  **For other MCP clients**: See your client's documentation for MCP server configuration.
@@ -263,10 +262,12 @@ Close with `aidex_viewer({ path: ".", action: "close" })`
263
262
  ## CLI Usage
264
263
 
265
264
  ```bash
266
- node build/index.js scan Q:/develop # Find all indexed projects
267
- node build/index.js init ./myproject # Index a project from command line
265
+ aidex scan Q:/develop # Find all indexed projects
266
+ aidex init ./myproject # Index a project from command line
268
267
  ```
269
268
 
269
+ > `aidex-mcp` works as an alias for `aidex`.
270
+
270
271
  ## Performance
271
272
 
272
273
  | Project | Files | Items | Index Time | Query Time |
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "aidex-mcp",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "MCP Server providing persistent code indexing for Claude Code",
5
5
  "main": "build/index.js",
6
6
  "bin": {
7
- "aidex": "build/index.js"
7
+ "aidex": "build/index.js",
8
+ "aidex-mcp": "build/index.js"
8
9
  },
9
10
  "type": "module",
10
11
  "scripts": {