ai-hist-mcp 0.9.2 → 0.10.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 +4 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,12 +10,14 @@ The server imports only `ai-hist` public functions. It never opens SQLite,
10
10
  loads the native addon directly, scans provider files, or invokes a CLI.
11
11
 
12
12
  Tools: `search_history`, `recent_history`, `list_sessions`,
13
- `discover_sessions`, `get_session`, `get_session_events`, `history_stats`, and
13
+ `discover_sessions`, `hydrate_session`, `get_session`, `get_session_events`, `history_stats`, and
14
14
  `sync`. Search, recent history, session listing, discovery, statistics, and sync accept a
15
15
  `scope` of `local`, `remote`, or `all`; scope defaults to `local`.
16
16
 
17
17
  Cached reads support all three scopes. Remote discovery and sync connectors are
18
18
  not available yet: explicit `remote` acquisition returns
19
19
  `UNSUPPORTED_OPERATION`, while `all` runs the configured local connectors.
20
- Consequently, the current discovery and sync tools are annotated as local,
20
+ `hydrate_session` is an idempotent write that fully indexes one previously
21
+ discovered identity and optionally its related provider-native sessions.
22
+ Consequently, the current discovery, hydration, and sync tools are annotated as local,
21
23
  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.9.2",
3
+ "version": "0.10.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.9.2"
25
+ "ai-hist": "0.10.0"
26
26
  },
27
27
  "engines": {
28
28
  "node": ">=20"