@context-engine-bridge/context-engine-mcp-bridge 0.0.88 → 0.0.89

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@context-engine-bridge/context-engine-mcp-bridge",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "description": "Context Engine MCP bridge (http/stdio proxy combining indexer + memory servers)",
5
5
  "bin": {
6
6
  "ctxce": "bin/ctxce.js",
@@ -491,7 +491,7 @@ export function handleOAuthStoreSession(req, res) {
491
491
  return;
492
492
  }
493
493
 
494
- if (code_challenge && normalizedCodeChallengeMethod !== "S256") {
494
+ if (code_challenge && !["S256", "plain"].includes(normalizedCodeChallengeMethod)) {
495
495
  res.statusCode = 400;
496
496
  res.end(JSON.stringify({
497
497
  error: "invalid_request",
@@ -619,7 +619,7 @@ export function handleOAuthToken(req, res) {
619
619
  // PKCE validation (RFC 7636)
620
620
  if (pendingData.codeChallenge) {
621
621
  const codeChallengeMethod = pendingData.codeChallengeMethod || "S256";
622
- if (codeChallengeMethod !== "S256") {
622
+ if (!["S256", "plain"].includes(codeChallengeMethod)) {
623
623
  pendingCodes.delete(code);
624
624
  res.statusCode = 400;
625
625
  res.end(JSON.stringify({
@@ -634,8 +634,11 @@ export function handleOAuthToken(req, res) {
634
634
  res.end(JSON.stringify({ error: "invalid_grant", error_description: "code_verifier required for PKCE" }));
635
635
  return;
636
636
  }
637
- const crypto = await import("node:crypto");
638
- const expectedChallenge = crypto.createHash("sha256").update(codeVerifier).digest("base64url");
637
+ let expectedChallenge = codeVerifier;
638
+ if (codeChallengeMethod === "S256") {
639
+ const crypto = await import("node:crypto");
640
+ expectedChallenge = crypto.createHash("sha256").update(codeVerifier).digest("base64url");
641
+ }
639
642
  if (expectedChallenge !== pendingData.codeChallenge) {
640
643
  pendingCodes.delete(code);
641
644
  res.statusCode = 400;
package/AGENTS.md DELETED
@@ -1,69 +0,0 @@
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 DELETED
@@ -1,34 +0,0 @@
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/src/AGENTS.md DELETED
@@ -1,59 +0,0 @@
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 -->