@contextstream/mcp-server 0.4.27 → 0.4.29
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 +13 -4
- package/dist/index.js +2221 -674
- package/dist/test-server.js +8 -6
- package/package.json +16 -3
package/README.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# ContextStream MCP Server
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Get set up in 30 seconds (recommended):**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
```bash
|
|
6
|
+
npx -y @contextstream/mcp-server setup
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
This wizard authenticates you, creates/stores an API key, installs editor rules, and writes MCP config files.
|
|
10
|
+
|
|
11
|
+
Persistent memory, semantic search, and code intelligence for any MCP-compatible AI tool (Cursor, Claude Code, Windsurf, VS Code, Claude Desktop, Codex CLI, etc.).
|
|
6
12
|
|
|
7
|
-
**
|
|
13
|
+
**At a glance:**
|
|
14
|
+
- Shared "brain" for decisions, preferences, notes (including implementation notes), lessons, tasks, and project context.
|
|
15
|
+
- Search + analysis across sessions with consistent context (semantic/hybrid/keyword + graph tools).
|
|
16
|
+
- v0.4.x consolidated domain tools (~11 tools) for ~75% lower tool-registry token overhead vs previous versions.
|
|
8
17
|
|
|
9
18
|
---
|
|
10
19
|
|
|
@@ -45,7 +54,7 @@ MCP clients often inject the tool catalog into the model context. v0.4.x is desi
|
|
|
45
54
|
|
|
46
55
|
- **Consolidated domain tools** (v0.4.x): short tool list with action/mode dispatch
|
|
47
56
|
- Session-aware context loading (`session_init`, `context_smart`)
|
|
48
|
-
- Memory capture + recall (decisions, preferences, lessons, tasks, bugs)
|
|
57
|
+
- Memory capture + recall (decisions, preferences, notes, implementation notes, lessons, tasks, bugs)
|
|
49
58
|
- Code search (semantic, hybrid, keyword, pattern)
|
|
50
59
|
- Knowledge graph + code analysis (dependencies, impact, call paths, circular deps, unused code)
|
|
51
60
|
- Graph ingestion for full graph builds (`graph(action="ingest")`)
|