@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 +3 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
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 (
|
|
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 -
|
|
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.
|
|
153
|
+
version: "1.9.48",
|
|
154
154
|
});
|
|
155
155
|
// ---------------------------------------------------------------------------
|
|
156
156
|
// Tool: search_context (hybrid: keyword + vector)
|
package/package.json
CHANGED