@smartergpt/lex-mcp 4.0.4 → 4.1.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 +7 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -52,7 +52,7 @@ Not sure which path applies? Give an agent the bounded, read-only
52
52
 
53
53
  ## Smallest reversible smoke test
54
54
 
55
- This POSIX-shell test launches version `4.0.4`, performs only the MCP handshake and `tools/list`,
55
+ This POSIX-shell test launches version `4.1.0`, performs only the MCP handshake and `tools/list`,
56
56
  and confines the package cache and any Lex compatibility state to one temporary directory. It does
57
57
  not call a write tool or modify the repository.
58
58
 
@@ -71,13 +71,13 @@ smoke_dir="$(mktemp -d)"
71
71
  | LEX_WORKSPACE_ROOT="$smoke_dir" \
72
72
  LEX_DB_PATH="$smoke_dir/memory.db" \
73
73
  npm_config_cache="$smoke_dir/npm-cache" \
74
- npx --yes @smartergpt/lex-mcp@4.0.4
74
+ npx --yes @smartergpt/lex-mcp@4.1.0
75
75
  )
76
76
 
77
77
  find "$smoke_dir" -maxdepth 4 -print
78
78
  ```
79
79
 
80
- A successful response identifies `lex-mcp` version `4.0.4` and returns Lex's tool list. Review the
80
+ A successful response identifies `lex-mcp` version `4.1.0` and returns Lex's tool list. Review the
81
81
  printed temporary path, then remove only that directory:
82
82
 
83
83
  ```bash
@@ -103,7 +103,7 @@ Add to `.vscode/mcp.json`:
103
103
  "lex": {
104
104
  "type": "stdio",
105
105
  "command": "npx",
106
- "args": ["--yes", "@smartergpt/lex-mcp@4.0.4"],
106
+ "args": ["--yes", "@smartergpt/lex-mcp@4.1.0"],
107
107
  "env": {
108
108
  "LEX_WORKSPACE_ROOT": "${workspaceFolder}"
109
109
  }
@@ -122,7 +122,7 @@ local workspace:
122
122
  "mcpServers": {
123
123
  "lex": {
124
124
  "command": "npx",
125
- "args": ["--yes", "@smartergpt/lex-mcp@4.0.4"],
125
+ "args": ["--yes", "@smartergpt/lex-mcp@4.1.0"],
126
126
  "env": {
127
127
  "LEX_WORKSPACE_ROOT": "/absolute/path/to/project"
128
128
  }
@@ -230,7 +230,7 @@ wrapper release:
230
230
  - supports the exact same Node.js range as Lex.
231
231
 
232
232
  For this release, the wrapper, dependency pin, installed Lex core, and server-reported version are
233
- all `4.0.4`; the Node range is `>=24`.
233
+ all `4.1.0`; the Node range is `>=24`.
234
234
 
235
235
  Publish the matching Lex release before publishing this wrapper. Candidate CI installs the exact
236
236
  public dependency graph from the committed lockfile, rebuilds native dependencies, runs the delivery
@@ -272,7 +272,7 @@ Before the matching Lex version is public, validate an externally reviewed packe
272
272
  without changing this repository's registry-shaped release lock:
273
273
 
274
274
  ```bash
275
- LEX_MCP_LEX_TARBALL=/absolute/path/to/smartergpt-lex-4.0.4.tgz npm run test:pack
275
+ LEX_MCP_LEX_TARBALL=/absolute/path/to/smartergpt-lex-4.1.0.tgz npm run test:pack
276
276
  ```
277
277
 
278
278
  The smoke's temporary install lock must retain that supplied tarball as the installed Lex source;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartergpt/lex-mcp",
3
- "version": "4.0.4",
3
+ "version": "4.1.0",
4
4
  "description": "MCP server for Lex episodic memory - stdio transport wrapper",
5
5
  "mcpName": "dev.smartergpt/lex",
6
6
  "type": "module",
@@ -41,7 +41,7 @@
41
41
  "link:local": "rm -rf node_modules/@smartergpt/lex && mkdir -p node_modules/@smartergpt && ln -s /srv/lex-mcp/lex node_modules/@smartergpt/lex"
42
42
  },
43
43
  "dependencies": {
44
- "@smartergpt/lex": "4.0.4"
44
+ "@smartergpt/lex": "4.1.0"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public",