-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 6.08 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 6.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "engram-mcp-server",
"version": "1.12.0",
"description": "Engram — Persistent Memory Cortex for AI coding agents. Gives agents session continuity, change tracking, decision logging, and project intelligence across sessions.",
"type": "module",
"main": "dist/index.js",
"bin": {
"engram": "dist/index.js",
"engram-mcp-server": "dist/index.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keggan-std/Engram.git"
},
"releaseNotes": "# v1.12.0 — Android Studio Support + Installer UX Redesign\n\n**Released:** v1.12.0 — March 6, 2026\n\n## Overview\n\nv1.12.0 adds Android Studio as the 14th supported IDE and completely redesigns the interactive installer experience. The installer now auto-detects the current IDE and shows a focused status panel instead of prompting to install across all IDEs. Project root detection, scope defaults, and multi-version config handling are all improved. Zero breaking changes. No schema migration.\n\n557 tests pass.\n\n---\n\n## What's New\n\n### Android Studio MCP Support (14th IDE)\n\nAndroid Studio now has full stdio-based MCP support via the installer. Despite official docs describing HTTP-only transport, real-world testing confirms stdio transport works identically to other JetBrains-family IDEs.\n\n**Key details:**\n\n- Version-specific config discovery via `resolveGlobalPaths()` — finds all installed versions automatically\n- Install writes to ALL discovered versions (e.g., AndroidStudio2024.1, 2024.2, 2024.3, 2025.1)\n- `enabled: true` required — added automatically via `extraEntryFields`\n- Environment detection via `STUDIO_VM_OPTIONS` env var\n- Uses `mcpServers` config key (not `servers`)\n\n```bash\nnpx -y engram-mcp-server install --ide androidstudio\n```\n\n### Installer UX Redesign\n\n**Focused Status Panel** — When an IDE is detected, shows a compact panel with IDE name, config path, database root (with detection evidence), and installed version status with npm comparison. Replaced the old \"install for all IDEs?\" prompt.\n\n**Interactive Menu** — Numbered options: Install/Update/Repair current IDE, custom directory, other detected IDEs, or cancel.\n\n**Project Root Auto-Detection** — Walks up from cwd looking for project markers (.git, package.json, Cargo.toml, go.mod, pyproject.toml, build.gradle, pom.xml, .engram). Pre-fills the path for user confirmation.\n\n**Scope Default Fixed** — Now defaults to local (project-level) per Decision #20. Was incorrectly defaulting to global.\n\n**--check Multi-Version** — Shows ALL version-specific config paths for IDEs like Android Studio.\n\n**--list Robust Detection** — Uses command/args matching instead of exact key name check.\n\n### Code Quality\n\nExtracted shared helpers: `makeColors()`, `semverCmp()`, `fetchNpmLatest()`, `detectProjectRootForDisplay()`, `resolveIdeInstallStatus()`. Centralized `resolveIdeGlobalPaths()` in ide-detector.ts.\n\n---\n\n## Files Changed\n\n| File | Change |\n|------|--------|\n| `src/installer/ide-configs.ts` | `resolveGlobalPaths`, `extraEntryFields` on IdeDefinition; androidstudio entry |\n| `src/installer/ide-detector.ts` | `resolveIdeGlobalPaths()` export; Android Studio detection |\n| `src/installer/config-writer.ts` | `makeEngramEntry()` spreads extraEntryFields |\n| `src/installer/index.ts` | Full UX redesign: status panel, project root detection, scope fix, menu |\n| `tests/installer/installer.test.ts` | Updated scope assertion for resolveGlobalPaths |\n| `README.md` | Android Studio docs, --ide values, config key note |\n| `llms.txt` | Added Android Studio to compatible list |\n\n---\n\n## Upgrade\n\nNo configuration changes required. No schema migration.\n\n```bash\nnpx -y engram-mcp-server install\n```\n\n---",
"scripts": {
"build": "tsc",
"prepack": "node scripts/inject-release-notes.js && npm run clean && npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"start": "node dist/index.js",
"dev": "tsc --watch",
"clean": "node -e \"const {rmSync,existsSync}=require('fs');if(existsSync('dist'))rmSync('dist',{recursive:true,force:true})\"",
"install-hooks": "node dist/scripts/install-hooks.js",
"install-mcp": "node scripts/install-mcp.js",
"install-mcp:list": "node scripts/install-mcp.js --list",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"build:dashboard": "cd packages/engram-dashboard && npm install && npm run build",
"dev:http": "node dist/index.js --mode=http",
"dashboard": "npm run build && npm --prefix packages/engram-dashboard install --prefer-offline && concurrently -k --raw -n \"api,ui\" -c \"cyan,green\" \"node dist/index.js --mode=http --open-port=5173\" \"npm --prefix packages/engram-dashboard run dev\""
},
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"ai-memory",
"coding-agent",
"persistent-memory",
"session-continuity",
"session-memory",
"agent-memory",
"llm-memory",
"ai-agent",
"llm",
"multi-agent",
"agent-coordination",
"task-tracking",
"decision-logging",
"change-tracking",
"context-persistence",
"claude",
"cursor",
"windsurf",
"copilot",
"vscode",
"sqlite",
"developer-tools"
],
"author": "Renald Shao (aka Keggan Student) <https://github.com/keggan-std>",
"homepage": "https://github.com/keggan-std/Engram#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"better-sqlite3": "^12.6.2",
"cors": "^2.8.6",
"express": "^5.2.1",
"open": "^11.0.0",
"ws": "^8.19.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.10.0",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.2.1",
"supertest": "^7.2.2",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"overrides": {
"prebuild-install": "7.1.3"
},
"engines": {
"node": ">=18.0.0"
}
}