cortex-mcp 1.2.2 → 1.2.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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +14 -4
package/README.md CHANGED
@@ -80,6 +80,22 @@ 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 # Interactive demo — store, search, dedup
88
+ npm run benchmark # Performance benchmark — write, read, FTS ops/sec
89
+ ```
90
+
91
+ ### IDE-Specific Setup Guides
92
+
93
+ Step-by-step instructions for your IDE: **[Cursor · Claude Code · Windsurf · Cline · Copilot](docs/ide-setup.md)**
94
+
95
+ ### Recipes & Use Cases
96
+
97
+ 10 practical examples: **[docs/recipes.md](docs/recipes.md)** — conventions, bug tracking, anti-hallucination, team onboarding, and more.
98
+
83
99
  ## Features
84
100
 
85
101
  ### 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.2",
5
+ "version": "1.2.4",
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,9 @@
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",
73
+ "benchmark": "node scripts/benchmark.js"
64
74
  },
65
75
  "pkg": {
66
76
  "scripts": "dist/**/*.js",