aidex-mcp 1.7.0 → 1.7.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/FUTURE.md +5 -0
- package/package.json +34 -3
package/FUTURE.md
CHANGED
|
@@ -11,6 +11,11 @@ Ideensammlung für zukünftige Features und Erweiterungen.
|
|
|
11
11
|
- Impact-Analyse: "Wenn ich diese Datei ändere, welche anderen sind betroffen?"
|
|
12
12
|
- Visualisierung als Graph im Viewer
|
|
13
13
|
|
|
14
|
+
### Update-Benachrichtigung
|
|
15
|
+
- Beim MCP-Server-Start prüfen ob eine neuere Version auf npm verfügbar ist
|
|
16
|
+
- Dem User (bzw. der KI) einen Hinweis anzeigen: "AiDex v1.8.0 verfügbar, installiert: v1.7.0"
|
|
17
|
+
- Nicht blockierend, nur Info - z.B. im `aidex_session` oder `aidex_status` Output
|
|
18
|
+
|
|
14
19
|
---
|
|
15
20
|
|
|
16
21
|
## B. AiDex Global / Hub (v2.0) - Neue Meta-Ebene
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aidex-mcp",
|
|
3
|
-
"version": "1.7.
|
|
4
|
-
"
|
|
3
|
+
"version": "1.7.2",
|
|
4
|
+
"mcpName": "io.github.cscsoftware/aidex",
|
|
5
|
+
"description": "MCP Server for persistent code indexing. Gives AI assistants (Claude, Gemini, Copilot, Cursor) instant access to your codebase. 50x less context than grep.",
|
|
5
6
|
"main": "build/index.js",
|
|
6
7
|
"bin": {
|
|
7
8
|
"aidex": "build/index.js",
|
|
@@ -21,12 +22,42 @@
|
|
|
21
22
|
},
|
|
22
23
|
"keywords": [
|
|
23
24
|
"mcp",
|
|
25
|
+
"mcp-server",
|
|
26
|
+
"model-context-protocol",
|
|
24
27
|
"claude",
|
|
28
|
+
"claude-code",
|
|
29
|
+
"claude-desktop",
|
|
30
|
+
"gemini",
|
|
31
|
+
"gemini-cli",
|
|
32
|
+
"copilot",
|
|
33
|
+
"github-copilot",
|
|
34
|
+
"vscode",
|
|
35
|
+
"cursor",
|
|
36
|
+
"windsurf",
|
|
25
37
|
"ai",
|
|
38
|
+
"ai-coding",
|
|
39
|
+
"ai-assistant",
|
|
40
|
+
"ai-tools",
|
|
26
41
|
"aidex",
|
|
27
42
|
"code-indexing",
|
|
28
|
-
"
|
|
43
|
+
"code-search",
|
|
44
|
+
"code-navigation",
|
|
45
|
+
"codebase",
|
|
46
|
+
"tree-sitter",
|
|
47
|
+
"sqlite",
|
|
48
|
+
"developer-tools",
|
|
49
|
+
"devtools",
|
|
50
|
+
"context-window",
|
|
51
|
+
"code-intelligence",
|
|
52
|
+
"code-analysis",
|
|
53
|
+
"identifier-search",
|
|
54
|
+
"method-signatures",
|
|
55
|
+
"cross-project"
|
|
29
56
|
],
|
|
57
|
+
"repository": {
|
|
58
|
+
"type": "git",
|
|
59
|
+
"url": "https://github.com/CSCSoftware/AiDex.git"
|
|
60
|
+
},
|
|
30
61
|
"author": "Uwe Chalas",
|
|
31
62
|
"license": "MIT",
|
|
32
63
|
"dependencies": {
|