@context-engine-bridge/context-engine-mcp-bridge 0.0.16 → 0.0.17
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.
- package/package.json +1 -1
- package/src/mcpServer.js +2 -1
package/package.json
CHANGED
package/src/mcpServer.js
CHANGED
|
@@ -126,7 +126,8 @@ function selectClientForTool(name, indexerClient, memoryClient) {
|
|
|
126
126
|
return indexerClient;
|
|
127
127
|
}
|
|
128
128
|
const lowered = name.toLowerCase();
|
|
129
|
-
|
|
129
|
+
// Route to memory server for any memory-prefixed tool
|
|
130
|
+
if (memoryClient && lowered.startsWith("memory")) {
|
|
130
131
|
return memoryClient;
|
|
131
132
|
}
|
|
132
133
|
return indexerClient;
|