@smartergpt/lex-mcp 2.9.1 → 2.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 +11 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -61,16 +61,20 @@ echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | npx @smarter
61
61
 
62
62
  ## Environment Variables
63
63
 
64
- | Variable | Description | Default |
65
- | -------------------- | -------------------------------------------- | --------------------------- |
66
- | `LEX_WORKSPACE_ROOT` | Project root directory (compat env var name) | Current directory |
67
- | `LEX_DB_PATH` | SQLite database path (canonical) | `.smartergpt/lex/memory.db` |
68
- | `LEX_MEMORY_DB` | Alias for `LEX_DB_PATH` (compat only) | — |
69
- | `LEX_DEBUG` | Enable debug logging to stderr | Off |
64
+ | Variable | Description | Default |
65
+ | ----------------------- | ------------------------------------------------ | --------------------------- |
66
+ | `LEX_WORKSPACE_ROOT` | Project root directory (compat env var name) | Current directory |
67
+ | `LEX_STORE` | Frame backend (`sqlite` or `postgres`) | `sqlite` |
68
+ | `LEX_DATABASE_URL` | PostgreSQL URL; required for PostgreSQL | — |
69
+ | `LEX_POSTGRES_PASSWORD` | Optional password for a credential-free URL | |
70
+ | `LEX_POSTGRES_POOL_MAX` | Maximum PostgreSQL connection-pool size | `10` |
71
+ | `LEX_DB_PATH` | SQLite database path; ignored by PostgreSQL | `.smartergpt/lex/memory.db` |
72
+ | `LEX_MEMORY_DB` | Alias for `LEX_DB_PATH` (compat only) | — |
73
+ | `LEX_DEBUG` | Enable debug logging to stderr | Off |
70
74
 
71
75
  When both `LEX_DB_PATH` and `LEX_MEMORY_DB` are set, `LEX_DB_PATH` wins.
72
76
 
73
- For multi-root workspaces, set the same absolute `LEX_DB_PATH` for direct Lex, this MCP wrapper, and AXF-routed Lex. The wrapper delegates `.lex.config.json`, environment, and default-store resolution to Lex core, so installed launches now honor caller-project config files. Use `system_introspect` to compare canonical store paths and `path-v1` identities across launch paths.
77
+ For multi-root workspaces using SQLite, set the same absolute `LEX_DB_PATH` for direct Lex, this MCP wrapper, and AXF-routed Lex. For shared cross-host storage, set `LEX_STORE=postgres` and the same `LEX_DATABASE_URL` on every surface; keep credentials in the host environment or secret configuration. The wrapper delegates `.lex.config.json`, environment, and store resolution to Lex core, so installed launches honor caller-project config files. Use `system_introspect` to compare `path-v1` SQLite or credential-free `postgres-v1` identities across launch paths.
74
78
 
75
79
  ## Tools
76
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartergpt/lex-mcp",
3
- "version": "2.9.1",
3
+ "version": "2.10.0",
4
4
  "description": "MCP server for Lex episodic memory - stdio transport wrapper",
5
5
  "mcpName": "dev.smartergpt/lex",
6
6
  "type": "module",
@@ -22,7 +22,7 @@
22
22
  "link:local": "rm -rf node_modules/@smartergpt/lex && mkdir -p node_modules/@smartergpt && ln -s /srv/lex-mcp/lex node_modules/@smartergpt/lex"
23
23
  },
24
24
  "dependencies": {
25
- "@smartergpt/lex": "2.9.1"
25
+ "@smartergpt/lex": "2.10.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public",