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.
- package/CHANGELOG.md +10 -0
- package/README.md +10 -9
- 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
|
+
[](https://www.npmjs.com/package/aidex-mcp)
|
|
3
4
|
[](LICENSE)
|
|
4
5
|
[](https://nodejs.org/)
|
|
5
6
|
[](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
|
-
|
|
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": "
|
|
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": "
|
|
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
|
-
|
|
267
|
-
|
|
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.
|
|
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": {
|