@compr/contextengine-mcp 1.9.47 → 1.9.48

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 CHANGED
@@ -73,7 +73,7 @@ Detects your project type, creates `contextengine.json` + `.github/copilot-instr
73
73
 
74
74
  That's it. ContextEngine auto-discovers your docs in `~/Projects`.
75
75
 
76
- ## Tools (11)
76
+ ## Tools (12)
77
77
 
78
78
  | Tool | Description |
79
79
  |------|-------------|
@@ -88,6 +88,7 @@ That's it. ContextEngine auto-discovers your docs in `~/Projects`.
88
88
  | `save_session` | Save key-value entry to a named session |
89
89
  | `load_session` | Load all entries from a named session |
90
90
  | `list_sessions` | List all saved sessions |
91
+ | `end_session` | Pre-flight checklist — checks uncommitted changes + doc freshness |
91
92
 
92
93
  ## Configuration
93
94
 
@@ -168,7 +169,7 @@ Your Project Files ContextEngine AI Agent
168
169
  ```
169
170
  src/
170
171
  ├── cli.ts # CLI - init scaffolding, help, routes to MCP
171
- ├── index.ts # MCP server - 11 tools, resources, file watcher
172
+ ├── index.ts # MCP server - 12 tools, resources, file watcher
172
173
  ├── config.ts # Config loading, auto-discovery, 7 patterns
173
174
  ├── ingest.ts # Markdown heading-based chunker
174
175
  ├── search.ts # Keyword search - term overlap scoring
package/dist/index.js CHANGED
@@ -150,7 +150,7 @@ function startWatching() {
150
150
  // ---------------------------------------------------------------------------
151
151
  const server = new McpServer({
152
152
  name: "ContextEngine",
153
- version: "1.9.47",
153
+ version: "1.9.48",
154
154
  });
155
155
  // ---------------------------------------------------------------------------
156
156
  // Tool: search_context (hybrid: keyword + vector)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compr/contextengine-mcp",
3
- "version": "1.9.47",
3
+ "version": "1.9.48",
4
4
  "description": "MCP server that turns your project documentation into a queryable knowledge base for AI coding agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",