cortex-mcp 1.2.3 → 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 +9 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -84,10 +84,17 @@ Then configure your MCP client to run the executable directly.
84
84
 
85
85
  See Cortex in action without any AI client:
86
86
  ```bash
87
- npm run demo
87
+ npm run demo # Interactive demo — store, search, dedup
88
+ npm run benchmark # Performance benchmark — write, read, FTS ops/sec
88
89
  ```
89
90
 
90
- This stores sample memories, runs FTS searches, and demonstrates deduplication — all in your terminal.
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.
91
98
 
92
99
  ## Features
93
100
 
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.3",
5
+ "version": "1.2.4",
6
6
  "publisher": "cortex",
7
7
  "license": "MIT",
8
8
  "engines": {
@@ -69,7 +69,8 @@
69
69
  "watch": "tsc -watch -p ./",
70
70
  "prepublishOnly": "npm run lint && npm run build",
71
71
  "build:bin": "node scripts/build-binaries.js",
72
- "demo": "node scripts/demo.js"
72
+ "demo": "node scripts/demo.js",
73
+ "benchmark": "node scripts/benchmark.js"
73
74
  },
74
75
  "pkg": {
75
76
  "scripts": "dist/**/*.js",