@context-engine-bridge/context-engine-mcp-bridge 0.0.63 → 0.0.64

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.63",
3
+ "version": "0.0.64",
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
@@ -1293,7 +1293,7 @@ async function createBridgeServer(options) {
1293
1293
  const fanOutCallTimeoutMs = Math.min(timeoutMs, 10000);
1294
1294
  const fanOutDeadlineMs = Math.round(fanOutCallTimeoutMs * 0.8);
1295
1295
  const fanOutPromises = additionalCollections.map(col => {
1296
- const colArgs = { ...args, collection: col };
1296
+ const colArgs = { ...args, collection: col, output_format: "json", compact: false };
1297
1297
  return targetClient.callTool(
1298
1298
  { name, arguments: colArgs },
1299
1299
  undefined,