ai-hist-mcp 0.8.3 → 0.9.0

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 +8 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,4 +11,11 @@ loads the native addon directly, scans provider files, or invokes a CLI.
11
11
 
12
12
  Tools: `search_history`, `recent_history`, `list_sessions`,
13
13
  `discover_sessions`, `get_session`, `get_session_events`, `history_stats`, and
14
- `sync`.
14
+ `sync`. Search, recent history, session listing, discovery, statistics, and sync accept a
15
+ `scope` of `local`, `remote`, or `all`; scope defaults to `local`.
16
+
17
+ Cached reads support all three scopes. Remote discovery and sync connectors are
18
+ not available yet: explicit `remote` acquisition returns
19
+ `UNSUPPORTED_OPERATION`, while `all` runs the configured local connectors.
20
+ Consequently, the current discovery and sync tools are annotated as local,
21
+ closed-world writes; their annotations will change when remote connectors ship.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist-mcp",
3
- "version": "0.8.3",
3
+ "version": "0.9.0",
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": "0.8.3"
25
+ "ai-hist": "0.9.0"
26
26
  },
27
27
  "engines": {
28
28
  "node": ">=20"