@code-context-engine/mcp 0.1.3 → 0.1.4
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 +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,13 +7,13 @@ Remote MCP server for [Context Engine](https://codesay.ai). One tool — `codeba
|
|
|
7
7
|
MCP clients should invoke via `npx` so each session pulls the current release:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx -y @code-context-engine/mcp
|
|
10
|
+
npx -y @code-context-engine/mcp@latest
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Or install globally:
|
|
13
|
+
Or install globally (also tracks latest on reinstall):
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install -g @code-context-engine/mcp
|
|
16
|
+
npm install -g @code-context-engine/mcp@latest
|
|
17
17
|
context-engine
|
|
18
18
|
```
|
|
19
19
|
|
|
@@ -28,7 +28,7 @@ context-engine
|
|
|
28
28
|
"mcpServers": {
|
|
29
29
|
"context-engine": {
|
|
30
30
|
"command": "npx",
|
|
31
|
-
"args": ["-y", "@code-context-engine/mcp"],
|
|
31
|
+
"args": ["-y", "@code-context-engine/mcp@latest"],
|
|
32
32
|
"env": {
|
|
33
33
|
"CONTEXT_ENGINE_REMOTE_API_KEY": "<your cek_ key>"
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-context-engine/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MCP server that gives Claude Code, Cursor, and any MCP client real codebase context without burning tokens — incremental sync, hybrid dense+sparse+symbol-graph retrieval, token-budgeted context packs.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://codesay.ai",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"type": "module",
|
|
30
30
|
"bin": {
|
|
31
|
-
"context-engine": "
|
|
31
|
+
"context-engine": "dist/remoteMcpServer.js"
|
|
32
32
|
},
|
|
33
33
|
"exports": {
|
|
34
34
|
".": {
|