@kage-core/kage-graph-mcp 1.1.11 → 1.1.13
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 +17 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,6 +7,23 @@ This package exposes two surfaces:
|
|
|
7
7
|
setup, optional daemon runtime, org/global artifact mode, marketplace packs,
|
|
8
8
|
and validation.
|
|
9
9
|
|
|
10
|
+
## Latest Release
|
|
11
|
+
|
|
12
|
+
`1.1.13` switches future Kage releases to GPL-3.0-only:
|
|
13
|
+
|
|
14
|
+
- package metadata now advertises `GPL-3.0-only`.
|
|
15
|
+
- the repo includes the official GPLv3 `LICENSE` text.
|
|
16
|
+
- README clarifies that pre-switch releases were MIT, while future releases are
|
|
17
|
+
GPL-3.0-only unless a separate written commercial license says otherwise.
|
|
18
|
+
|
|
19
|
+
`1.1.12` published the launch-ready docs pass:
|
|
20
|
+
|
|
21
|
+
- npm README now includes this explicit release note.
|
|
22
|
+
- Root README leads with the animated Kage demo GIF.
|
|
23
|
+
- README links clearly to the website and live viewer.
|
|
24
|
+
- Hosted viewer publishes Kage repo graph, code graph, and metrics from GitHub
|
|
25
|
+
Pages while local repos still use `kage viewer --project .`.
|
|
26
|
+
|
|
10
27
|
## Build
|
|
11
28
|
|
|
12
29
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kage-core/kage-graph-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.13",
|
|
4
4
|
"description": "Local-first repo memory, code graph, and recall MCP server for coding agents",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"ai-agents",
|
|
34
34
|
"code-graph"
|
|
35
35
|
],
|
|
36
|
-
"license": "
|
|
36
|
+
"license": "GPL-3.0-only",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@modelcontextprotocol/sdk": "^1.10.2",
|
|
39
39
|
"typescript": "^5.0.0"
|