Sign In

codebase-memory-mcp

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codebase-memory-mcp - npm Package Compare versions

Comparing version
0.10.1
to
0.10.2
+5
-6
install.js

@@ -583,10 +583,9 @@ #!/usr/bin/env node

const variant = platform === 'linux' ? '-portable' : '';
// Opt into the UI build (embedded graph visualization) with CBM_VARIANT=ui.
// Default is the standard (headless) build. Mirrors install.sh --ui.
const ui = (process.env.CBM_VARIANT || '').toLowerCase() === 'ui' ? 'ui-' : '';
const archive = `codebase-memory-mcp-${ui}${platform}-${arch}${variant}.${ext}`;
// No UI/standard split since v0.10.0: one archive per platform, graph UI
// always embedded. The old CBM_VARIANT=ui opt-in pointed at ui-* archives
// that no longer exist, so honoring it could only 404 (#1538).
const archive = `codebase-memory-mcp-${platform}-${arch}${variant}.${ext}`;
const url = `https://github.com/${REPO}/releases/download/v${VERSION}/${archive}`;
const uiLabel = ui ? '(ui) ' : '';
process.stdout.write(`codebase-memory-mcp: downloading v${VERSION} ${uiLabel}for ${platform}/${arch}...\n`);
process.stdout.write(`codebase-memory-mcp: downloading v${VERSION} for ${platform}/${arch}...\n`);

@@ -593,0 +592,0 @@ const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'cbm-install-'));

{
"name": "codebase-memory-mcp",
"version": "0.10.1",
"version": "0.10.2",
"description": "Fast code intelligence for AI coding agents — installs a verified native runtime set",

@@ -5,0 +5,0 @@ "mcpName": "io.github.DeusData/codebase-memory-mcp",

@@ -18,8 +18,4 @@ # codebase-memory-mcp

The standard runtime set for your platform is downloaded automatically at install time. To select the UI runtime set and its verified frontend pack, set `CBM_VARIANT=ui` while installing and when invoking the wrapper:
The runtime set for your platform is downloaded automatically at install time. There is one composition per platform and the graph UI is always included — the former `CBM_VARIANT=ui` opt-in is obsolete.
```bash
CBM_VARIANT=ui npm install -g codebase-memory-mcp
```
Then configure your coding agents:

@@ -26,0 +22,0 @@