@context-engine-bridge/context-engine-mcp-bridge 0.0.49 → 0.0.50

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/package.json +1 -1
  2. package/src/mcpServer.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@context-engine-bridge/context-engine-mcp-bridge",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "description": "Context Engine MCP bridge (http/stdio proxy combining indexer + memory servers)",
5
5
  "bin": {
6
6
  "ctxce": "bin/ctxce.js",
package/src/mcpServer.js CHANGED
@@ -112,7 +112,7 @@ function _resolveAndContain(relPath, workspace) {
112
112
  return null;
113
113
  }
114
114
 
115
- const _PATH_FIELDS = ["host_path", "path", "rel_path"];
115
+ const _PATH_FIELDS = ["client_path", "host_path", "path", "rel_path"];
116
116
 
117
117
  function _extractPaths(obj, paths, workspace, depth = 0) {
118
118
  if (!obj || typeof obj !== "object" || depth > 20) return;