cortex-mcp 1.2.2 → 1.2.3
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 +9 -0
- package/package.json +13 -4
package/README.md
CHANGED
|
@@ -80,6 +80,15 @@ No Node.js required. Download from the latest release:
|
|
|
80
80
|
|
|
81
81
|
Then configure your MCP client to run the executable directly.
|
|
82
82
|
|
|
83
|
+
### Try the Demo
|
|
84
|
+
|
|
85
|
+
See Cortex in action without any AI client:
|
|
86
|
+
```bash
|
|
87
|
+
npm run demo
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
This stores sample memories, runs FTS searches, and demonstrates deduplication — all in your terminal.
|
|
91
|
+
|
|
83
92
|
## Features
|
|
84
93
|
|
|
85
94
|
### Why Cortex?
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "cortex-mcp",
|
|
3
3
|
"displayName": "Cortex MCP Server",
|
|
4
4
|
"description": "Persistent memory for AI coding assistants. Injects context from past sessions into every LLM request.",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.3",
|
|
6
6
|
"publisher": "cortex",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"engines": {
|
|
@@ -19,18 +19,26 @@
|
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"mcp",
|
|
22
|
+
"mcp-server",
|
|
23
|
+
"model-context-protocol",
|
|
22
24
|
"memory",
|
|
25
|
+
"persistent-memory",
|
|
23
26
|
"ai",
|
|
24
27
|
"llm",
|
|
25
28
|
"context",
|
|
26
|
-
"persistent-memory",
|
|
27
29
|
"coding-assistant",
|
|
28
30
|
"cursor",
|
|
29
31
|
"claude",
|
|
30
32
|
"copilot",
|
|
31
33
|
"windsurf",
|
|
34
|
+
"cline",
|
|
35
|
+
"gemini",
|
|
36
|
+
"ai-memory",
|
|
32
37
|
"hallucination-detection",
|
|
33
|
-
"developer-tools"
|
|
38
|
+
"developer-tools",
|
|
39
|
+
"code-context",
|
|
40
|
+
"sqlite",
|
|
41
|
+
"embeddings"
|
|
34
42
|
],
|
|
35
43
|
"bin": {
|
|
36
44
|
"cortex-mcp": "./dist/mcp-stdio.js",
|
|
@@ -60,7 +68,8 @@
|
|
|
60
68
|
"lint": "eslint src/",
|
|
61
69
|
"watch": "tsc -watch -p ./",
|
|
62
70
|
"prepublishOnly": "npm run lint && npm run build",
|
|
63
|
-
"build:bin": "node scripts/build-binaries.js"
|
|
71
|
+
"build:bin": "node scripts/build-binaries.js",
|
|
72
|
+
"demo": "node scripts/demo.js"
|
|
64
73
|
},
|
|
65
74
|
"pkg": {
|
|
66
75
|
"scripts": "dist/**/*.js",
|