@compr/contextengine-mcp 1.9.44 → 1.9.45

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/LICENSE +23 -17
  2. package/README.md +13 -5
  3. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,21 +1,27 @@
1
- MIT License
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
2
3
 
3
- Copyright (c) 2026 FASTPROD
4
+ Copyright (c) 2026 FASTPROD (PROD LLC)
4
5
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
6
+ This program is free software: you can redistribute it and/or modify
7
+ it under the terms of the GNU Affero General Public License as published
8
+ by the Free Software Foundation, either version 3 of the License, or
9
+ (at your option) any later version.
11
10
 
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
11
+ This program is distributed in the hope that it will be useful,
12
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ GNU Affero General Public License for more details.
14
15
 
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
16
+ You should have received a copy of the GNU Affero General Public License
17
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
18
+
19
+ Additional permission under GNU AGPL version 3 section 7:
20
+
21
+ If you modify this Program, or any covered work, by linking or combining
22
+ it with other code, such modified work is not, by reason of such linking
23
+ or combining, subject to the terms of the AGPL if the modified work does
24
+ not interact with users over a network. This exception does not invalidate
25
+ any other reasons why the modified work might be covered by the AGPL.
26
+
27
+ For commercial licensing inquiries: yannick@compr.ch
package/README.md CHANGED
@@ -25,7 +25,7 @@ ContextEngine fixes this: **zero-config, fully local, privacy-first.**
25
25
  ### 1. Scaffold config (optional)
26
26
 
27
27
  ```bash
28
- npx contextengine-mcp init
28
+ npx @compr/contextengine-mcp init
29
29
  ```
30
30
 
31
31
  Detects your project type, creates `contextengine.json` + `.github/copilot-instructions.md` template.
@@ -39,7 +39,7 @@ Detects your project type, creates `contextengine.json` + `.github/copilot-instr
39
39
  "servers": {
40
40
  "ContextEngine": {
41
41
  "command": "npx",
42
- "args": ["contextengine-mcp"]
42
+ "args": ["@compr/contextengine-mcp"]
43
43
  }
44
44
  }
45
45
  }
@@ -52,7 +52,7 @@ Detects your project type, creates `contextengine.json` + `.github/copilot-instr
52
52
  "mcpServers": {
53
53
  "ContextEngine": {
54
54
  "command": "npx",
55
- "args": ["contextengine-mcp"]
55
+ "args": ["@compr/contextengine-mcp"]
56
56
  }
57
57
  }
58
58
  }
@@ -65,7 +65,7 @@ Detects your project type, creates `contextengine.json` + `.github/copilot-instr
65
65
  "mcpServers": {
66
66
  "ContextEngine": {
67
67
  "command": "npx",
68
- "args": ["contextengine-mcp"]
68
+ "args": ["@compr/contextengine-mcp"]
69
69
  }
70
70
  }
71
71
  }
@@ -195,6 +195,14 @@ npm start
195
195
  - Node.js 18+
196
196
  - No API keys needed — embeddings run locally
197
197
 
198
+ ## Contributing
199
+
200
+ Issues, feature requests, and PRs welcome at [github.com/FASTPROD/ContextEngine](https://github.com/FASTPROD/ContextEngine/issues).
201
+
202
+ If you're using ContextEngine, we'd love to hear about it — feedback helps us improve.
203
+
198
204
  ## License
199
205
 
200
- MIT — see [LICENSE](LICENSE).
206
+ AGPL-3.0 — see [LICENSE](LICENSE).
207
+
208
+ For commercial licensing: yannick@compr.ch
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compr/contextengine-mcp",
3
- "version": "1.9.44",
3
+ "version": "1.9.45",
4
4
  "description": "MCP server that turns your project documentation into a queryable knowledge base for AI coding agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,8 +28,8 @@
28
28
  "search",
29
29
  "developer-tools"
30
30
  ],
31
- "author": "FASTPROD",
32
- "license": "MIT",
31
+ "author": "FASTPROD (PROD LLC)",
32
+ "license": "AGPL-3.0",
33
33
  "repository": {
34
34
  "type": "git",
35
35
  "url": "git+https://github.com/FASTPROD/ContextEngine.git"