ai-hist-mcp 0.3.0 → 0.3.2
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 +9 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,6 +11,15 @@ The wrapper depends on `ai-hist` and launches its `ai-hist/mcp-server` export. I
|
|
|
11
11
|
- `AI_HIST_DB` points to the ai-hist SQLite database.
|
|
12
12
|
- `TRAJECTORY_ROOT` points to the root containing `**/compacted/*.json` trajectory files.
|
|
13
13
|
|
|
14
|
+
Project scoping is configured with CLI args:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx -y ai-hist-mcp --project .
|
|
18
|
+
npx -y ai-hist-mcp --project /path/to/project
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Both forms restrict all MCP tools to one project path, including child paths.
|
|
22
|
+
|
|
14
23
|
The MCP server exposes:
|
|
15
24
|
|
|
16
25
|
- `search_history`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-hist-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Thin npx wrapper for the ai-hist stdio MCP server.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"ai-hist": "
|
|
25
|
+
"ai-hist": "0.3.2"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
28
|
"node": ">=18"
|