@context-engine-bridge/context-engine-mcp-bridge 0.0.84 → 0.0.85

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/AGENTS.md ADDED
@@ -0,0 +1,69 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-02-19 | Updated: 2026-02-19 -->
3
+
4
+ # ctx-mcp-bridge
5
+
6
+ ## Purpose
7
+
8
+ The MCP bridge (`ctxce` CLI) is a Model Context Protocol server that aggregates the Context Engine indexer and memory servers into a single unified MCP server. It supports both stdio and HTTP transport modes, making it compatible with MCP clients like Claude Code, Windsurf, Augment, and others. The bridge is primarily launched by the VS Code extension but can run standalone.
9
+
10
+ ## Key Files
11
+
12
+ | File | Description |
13
+ |------|-------------|
14
+ | `bin/ctxce.js` | CLI entry point and executable (chmod +x 755) |
15
+ | `src/cli.js` | Command routing and argument parsing for `mcp-serve`, `mcp-http-serve`, `auth`, `connect` |
16
+ | `src/mcpServer.js` | MCP server implementation with stdio/HTTP transport, tool deduping, and auth handling |
17
+ | `src/authCli.js` | Auth command handlers: `login`, `logout`, `status` with token and password flows |
18
+ | `src/authConfig.js` | Session storage and management in `~/.ctxce/auth.json` |
19
+ | `src/oauthHandler.js` | OAuth protocol support for remote deployments |
20
+ | `src/uploader.js` | Standalone code uploader integration |
21
+ | `src/connectCli.js` | Connection validation and setup helpers |
22
+ | `src/resultPathMapping.js` | Path remapping for tool results (container/host paths) |
23
+ | `package.json` | Node.js package manifest (requires Node >= 18) |
24
+
25
+ ## Subdirectories
26
+
27
+ | Directory | Purpose |
28
+ |-----------|---------|
29
+ | `bin/` | Executable CLI entry point |
30
+ | `docs/` | Debugging guides and documentation |
31
+ | `src/` | Core MCP server and auth logic (see `src/AGENTS.md`) |
32
+
33
+ ## For AI Agents
34
+
35
+ ### Working In This Directory
36
+
37
+ This is a Node.js MCP bridge package. Changes to MCP routing, tool forwarding, or auth handling require updates to `src/cli.js` and `src/mcpServer.js`. The bridge proxies requests between MCP clients and remote indexer/memory HTTP servers, so test both stdio and HTTP modes.
38
+
39
+ ### Testing Requirements
40
+
41
+ - Run with `npm start` or `node bin/ctxce.js --help`
42
+ - Test MCP stdio mode: `ctxce mcp-serve --workspace /tmp/test`
43
+ - Test MCP HTTP mode: `ctxce mcp-http-serve --workspace /tmp/test --port 30810`
44
+ - Test auth commands: `ctxce auth login --backend-url http://localhost:8004 --token TEST_TOKEN`
45
+ - Verify auth state: `ctxce auth status --backend-url http://localhost:8004 --json`
46
+ - E2E tests: `npm run test:e2e`
47
+
48
+ ### Common Patterns
49
+
50
+ - Environment variables: `CTXCE_INDEXER_URL`, `CTXCE_MEMORY_URL`, `CTXCE_HTTP_PORT`, `CTXCE_AUTH_*`
51
+ - Auth sessions stored in `~/.ctxce/auth.json` keyed by backend URL
52
+ - MCP tools are deduplicated and forwarded from indexer and memory servers
53
+ - Path remapping (host paths <-> container paths) handled transparently
54
+ - All MCP requests are logged to stderr or `CTXCE_DEBUG_LOG` if set
55
+
56
+ ## Dependencies
57
+
58
+ ### Internal
59
+ - Context Engine indexer (HTTP endpoint at `CTXCE_INDEXER_URL` or `http://localhost:8003/mcp`)
60
+ - Context Engine memory server (HTTP endpoint at `CTXCE_MEMORY_URL` or `http://localhost:8002/mcp`)
61
+ - Auth backend (optional, at `CTXCE_AUTH_BACKEND_URL` or `http://localhost:8004`)
62
+
63
+ ### External
64
+ - `@modelcontextprotocol/sdk` (^1.24.3) – MCP protocol implementation
65
+ - `zod` (^3.25.0) – Runtime type validation
66
+ - `tar` (^7.5.9) – Archive support for uploads
67
+ - `ignore` (^7.0.5) – .gitignore-style file filtering
68
+
69
+ <!-- MANUAL: Any manually added notes below this line are preserved on regeneration -->
package/bin/AGENTS.md ADDED
@@ -0,0 +1,34 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-02-19 | Updated: 2026-02-19 -->
3
+
4
+ # bin
5
+
6
+ ## Purpose
7
+
8
+ Executable CLI entry point for the `ctxce` command (also aliased as `ctxce-bridge`). This directory contains the shebang-wrapped Node.js script that is installed globally or via npm when the package is installed.
9
+
10
+ ## Key Files
11
+
12
+ | File | Description |
13
+ |------|-------------|
14
+ | `ctxce.js` | CLI executable entry point (Node.js script, chmod +x 755) |
15
+
16
+ ## For AI Agents
17
+
18
+ ### Working In This Directory
19
+
20
+ Do not modify `ctxce.js` directly unless changing the CLI bootstrap. The actual CLI logic is in `src/cli.js`. The executable must have a shebang (`#!/usr/bin/env node`) and be marked executable on Unix systems.
21
+
22
+ ### Testing Requirements
23
+
24
+ - Verify executable permission: `ls -l bin/ctxce.js` should show `-rwxr-xr-x`
25
+ - Test global install: `npm install -g` and run `ctxce --help`
26
+ - Test npx mode: `npx @context-engine-bridge/context-engine-mcp-bridge ctxce --help`
27
+ - Postinstall script auto-fixes permissions on non-Windows systems
28
+
29
+ ## Dependencies
30
+
31
+ ### Internal
32
+ - `src/cli.js` – Main CLI router and handler
33
+
34
+ <!-- MANUAL: Any manually added notes below this line are preserved on regeneration -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@context-engine-bridge/context-engine-mcp-bridge",
3
- "version": "0.0.84",
3
+ "version": "0.0.85",
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/AGENTS.md ADDED
@@ -0,0 +1,59 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-02-19 | Updated: 2026-02-19 -->
3
+
4
+ # src
5
+
6
+ ## Purpose
7
+
8
+ Core MCP server implementation, auth handling, and CLI routing for the `ctxce` bridge. This module aggregates the Context Engine indexer and memory servers, manages authentication sessions, and handles both stdio and HTTP transport modes.
9
+
10
+ ## Key Files
11
+
12
+ | File | Description |
13
+ |------|-------------|
14
+ | `cli.js` | Main command router for `mcp-serve`, `mcp-http-serve`, `auth`, `connect` subcommands; parses CLI flags and environment variables |
15
+ | `mcpServer.js` | MCP server implementation; proxies requests to indexer/memory servers, dedupes tools, handles auth, supports stdio and HTTP transports |
16
+ | `authCli.js` | Auth command handlers for `login`, `logout`, `status` with token and password flows; manages session lifecycle |
17
+ | `authConfig.js` | Persistent auth state in `~/.ctxce/auth.json`; session loading, saving, TTL handling, OAuth support |
18
+ | `oauthHandler.js` | OAuth protocol implementation for token refresh and remote auth flows |
19
+ | `uploader.js` | Integration with the standalone code uploader (tar archive support, progress tracking) |
20
+ | `connectCli.js` | Connection validation, workspace discovery, and setup helpers |
21
+ | `resultPathMapping.js` | Path remapping for tool results (host paths <-> container paths); handles path translation for Docker environments |
22
+
23
+ ## For AI Agents
24
+
25
+ ### Working In This Directory
26
+
27
+ This is the core business logic. Changes to MCP command handling, tool routing, or auth flows affect both the CLI and the VS Code extension. The server proxies all tool requests to remote indexer/memory servers and dedupes tool lists to prevent duplicates. Auth is optional but handles session TTL, token refresh, and fallback to dev tokens.
28
+
29
+ ### Testing Requirements
30
+
31
+ - Test MCP stdio transport: `node src/cli.js mcp-serve --workspace /tmp/test`
32
+ - Test MCP HTTP transport: `node src/cli.js mcp-http-serve --workspace /tmp/test --port 30810`
33
+ - Test auth login: `node src/cli.js auth login --backend-url http://localhost:8004 --token TOKEN`
34
+ - Test auth status: `node src/cli.js auth status --backend-url http://localhost:8004 --json`
35
+ - Verify tool deduping: Check that tools from indexer and memory are merged without duplicates
36
+ - Test path remapping: Verify that container paths are correctly mapped for Docker environments
37
+ - Run E2E tests: `npm run test:e2e`, `npm run test:e2e:auth`, `npm run test:e2e:happy`, `npm run test:e2e:edge`
38
+
39
+ ### Common Patterns
40
+
41
+ - Environment variables guide server initialization: `CTXCE_INDEXER_URL`, `CTXCE_MEMORY_URL`, `CTXCE_HTTP_PORT`, `CTXCE_AUTH_BACKEND_URL`, `CTXCE_AUTH_ENABLED`, `CTXCE_DEBUG_LOG`
42
+ - Sessions are stored per backend URL in `~/.ctxce/auth.json` with TTL tracking
43
+ - All MCP tools from indexer and memory are merged and deduplicated before listing
44
+ - Path remapping is applied to tool arguments and results for Docker host/container path translation
45
+ - Debug logging goes to stderr and optionally to a file (set `CTXCE_DEBUG_LOG` env var)
46
+ - HTTP transport uses Node.js `createServer` with MCP's `StreamableHTTPServerTransport`
47
+
48
+ ## Dependencies
49
+
50
+ ### Internal
51
+ - `bin/ctxce.js` – CLI entry point that imports and runs these modules
52
+
53
+ ### External
54
+ - `@modelcontextprotocol/sdk` – MCP protocol (Server, StdioServerTransport, StreamableHTTPServerTransport, Client, StreamableHTTPClientTransport)
55
+ - `zod` – Runtime type validation (used in config parsing)
56
+ - `tar` – Archive handling for uploader
57
+ - `ignore` – File filtering for .gitignore patterns
58
+
59
+ <!-- MANUAL: Any manually added notes below this line are preserved on regeneration -->
package/src/mcpServer.js CHANGED
@@ -265,7 +265,7 @@ async function sendSessionDefaults(client, payload, label) {
265
265
  try {
266
266
  await client.callTool({
267
267
  name: "set_session_defaults",
268
- arguments: payload,
268
+ arguments: { ...payload },
269
269
  });
270
270
  } catch (err) {
271
271
  // eslint-disable-next-line no-console
@@ -1242,6 +1242,62 @@ async function createBridgeServer(options) {
1242
1242
  uploadServiceUrl,
1243
1243
  });
1244
1244
 
1245
+ async function recoverDeletedCollection(reason) {
1246
+ debugLog(`[ctxce] Collection appears deleted (${reason}), clearing cache and re-resolving`);
1247
+ defaultsPayload.collection = "";
1248
+ try {
1249
+ _clearExactWorkspaceCachedCollection(workspace);
1250
+ } catch (wsErr) {
1251
+ debugLog("[ctxce] Failed to clear workspace collection cache: " + String(wsErr));
1252
+ }
1253
+ try {
1254
+ if (backendHint) {
1255
+ const authEntry = loadAuthEntry(backendHint);
1256
+ let repoId = "";
1257
+ try { repoId = computeLogicalRepoIdentity(workspace)?.id || ""; } catch { repoId = ""; }
1258
+ clearResolvedCollection(backendHint, {
1259
+ orgId: authEntry?.org_id,
1260
+ orgSlug: authEntry?.org_slug,
1261
+ logicalRepoId: repoId,
1262
+ });
1263
+ }
1264
+ } catch (clearErr) {
1265
+ debugLog("[ctxce] Failed to clear resolved collection cache: " + String(clearErr));
1266
+ }
1267
+ try {
1268
+ const freshPayload = await buildDefaultsPayload({
1269
+ workspace,
1270
+ sessionId,
1271
+ explicitCollection: "",
1272
+ defaultCollection: "",
1273
+ defaultMode,
1274
+ defaultUnder,
1275
+ config,
1276
+ backendHint,
1277
+ uploadServiceUrl,
1278
+ });
1279
+ if (Object.hasOwn(freshPayload, "collection")) {
1280
+ defaultsPayload.collection = freshPayload.collection;
1281
+ }
1282
+ if (freshPayload.collection) {
1283
+ debugLog("[ctxce] Re-resolved collection after deletion: " + freshPayload.collection);
1284
+ }
1285
+ } catch (reResolveErr) {
1286
+ debugLog("[ctxce] Failed to re-resolve collection after deletion: " + String(reResolveErr));
1287
+ }
1288
+ try {
1289
+ if (indexerClient) {
1290
+ await sendSessionDefaults(indexerClient, defaultsPayload, "indexer");
1291
+ }
1292
+ if (memoryClient) {
1293
+ await sendSessionDefaults(memoryClient, defaultsPayload, "memory");
1294
+ }
1295
+ debugLog(`[ctxce] Re-sent session defaults after collection deletion detection (${reason})`);
1296
+ } catch (sdErr) {
1297
+ debugLog("[ctxce] Failed to re-send session defaults after deletion: " + String(sdErr));
1298
+ }
1299
+ }
1300
+
1245
1301
  async function initializeRemoteClients(forceRecreate = false) {
1246
1302
  if (!forceRecreate && indexerClient) {
1247
1303
  return;
@@ -1705,59 +1761,7 @@ async function createBridgeServer(options) {
1705
1761
  }
1706
1762
  // Detect explicit collection_deleted flag in a successful response
1707
1763
  if (resultIndicatesCollectionDeleted(result)) {
1708
- debugLog("[ctxce] Collection appears deleted, clearing cache and re-resolving");
1709
- defaultsPayload.collection = "";
1710
- try {
1711
- _clearExactWorkspaceCachedCollection(workspace);
1712
- } catch (wsErr) {
1713
- debugLog("[ctxce] Failed to clear workspace collection cache: " + String(wsErr));
1714
- }
1715
- try {
1716
- if (backendHint) {
1717
- const authEntry = loadAuthEntry(backendHint);
1718
- let repoId = "";
1719
- try { repoId = computeLogicalRepoIdentity(workspace)?.id || ""; } catch { repoId = ""; }
1720
- clearResolvedCollection(backendHint, {
1721
- orgId: authEntry?.org_id,
1722
- orgSlug: authEntry?.org_slug,
1723
- logicalRepoId: repoId,
1724
- });
1725
- }
1726
- } catch (clearErr) {
1727
- debugLog("[ctxce] Failed to clear resolved collection cache: " + String(clearErr));
1728
- }
1729
- // Best-effort re-resolve via /bridge/state
1730
- try {
1731
- const freshPayload = await buildDefaultsPayload({
1732
- workspace,
1733
- sessionId,
1734
- explicitCollection: "",
1735
- defaultCollection: "",
1736
- defaultMode,
1737
- defaultUnder,
1738
- config,
1739
- backendHint,
1740
- uploadServiceUrl,
1741
- });
1742
- if (freshPayload.collection) {
1743
- defaultsPayload.collection = freshPayload.collection;
1744
- debugLog("[ctxce] Re-resolved collection after deletion: " + freshPayload.collection);
1745
- }
1746
- } catch (reResolveErr) {
1747
- debugLog("[ctxce] Failed to re-resolve collection after deletion: " + String(reResolveErr));
1748
- }
1749
- // Re-send session defaults so remote MCP servers stop using the stale collection
1750
- try {
1751
- if (indexerClient) {
1752
- await sendSessionDefaults(indexerClient, defaultsPayload, "indexer");
1753
- }
1754
- if (memoryClient) {
1755
- await sendSessionDefaults(memoryClient, defaultsPayload, "memory");
1756
- }
1757
- debugLog("[ctxce] Re-sent session defaults after collection deletion detection");
1758
- } catch (sdErr) {
1759
- debugLog("[ctxce] Failed to re-send session defaults after deletion: " + String(sdErr));
1760
- }
1764
+ await recoverDeletedCollection("result path");
1761
1765
  }
1762
1766
 
1763
1767
  return maybeRemapToolResult(name, result, workspace);
@@ -1766,58 +1770,7 @@ async function createBridgeServer(options) {
1766
1770
 
1767
1771
  // Detect collection deletion from error signals
1768
1772
  if (isCollectionDeletedSignal(err)) {
1769
- debugLog("[ctxce] Collection appears deleted, clearing cache and re-resolving");
1770
- defaultsPayload.collection = "";
1771
- try {
1772
- _clearExactWorkspaceCachedCollection(workspace);
1773
- } catch (wsErr) {
1774
- debugLog("[ctxce] Failed to clear workspace collection cache: " + String(wsErr));
1775
- }
1776
- try {
1777
- if (backendHint) {
1778
- const authEntry = loadAuthEntry(backendHint);
1779
- let repoId = "";
1780
- try { repoId = computeLogicalRepoIdentity(workspace)?.id || ""; } catch { repoId = ""; }
1781
- clearResolvedCollection(backendHint, {
1782
- orgId: authEntry?.org_id,
1783
- orgSlug: authEntry?.org_slug,
1784
- logicalRepoId: repoId,
1785
- });
1786
- }
1787
- } catch (clearErr) {
1788
- debugLog("[ctxce] Failed to clear resolved collection cache: " + String(clearErr));
1789
- }
1790
- // Best-effort re-resolve via /bridge/state (fire-and-forget)
1791
- buildDefaultsPayload({
1792
- workspace,
1793
- sessionId,
1794
- explicitCollection: "",
1795
- defaultCollection: "",
1796
- defaultMode,
1797
- defaultUnder,
1798
- config,
1799
- backendHint,
1800
- uploadServiceUrl,
1801
- }).then(async (freshPayload) => {
1802
- if (freshPayload.collection) {
1803
- defaultsPayload.collection = freshPayload.collection;
1804
- debugLog("[ctxce] Re-resolved collection after deletion: " + freshPayload.collection);
1805
- }
1806
- // Re-send session defaults so remote MCP servers stop using the stale collection
1807
- try {
1808
- if (indexerClient) {
1809
- await sendSessionDefaults(indexerClient, defaultsPayload, "indexer");
1810
- }
1811
- if (memoryClient) {
1812
- await sendSessionDefaults(memoryClient, defaultsPayload, "memory");
1813
- }
1814
- debugLog("[ctxce] Re-sent session defaults after collection deletion detection (error path)");
1815
- } catch (sdErr) {
1816
- debugLog("[ctxce] Failed to re-send session defaults after deletion: " + String(sdErr));
1817
- }
1818
- }).catch((reResolveErr) => {
1819
- debugLog("[ctxce] Failed to re-resolve collection after deletion: " + String(reResolveErr));
1820
- });
1773
+ await recoverDeletedCollection("error path");
1821
1774
  }
1822
1775
 
1823
1776
  if (isConnectionDeadError(err) && !connectionRetried) {