engram-mcp-server 1.2.1 → 1.2.2

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/README.md CHANGED
@@ -218,7 +218,7 @@ As long as you have Node.js installed, your IDE will download and run the latest
218
218
 
219
219
  ### Option 1: The Magic Installer (Zero Config)
220
220
 
221
- Run this single command in your terminal. It will automatically detect your IDEs (Cursor, VS Code, Cline, Windsurf, Antigravity) and inject the correct configuration for you:
221
+ Run this single command in your terminal. It will automatically detect your IDEs (Cursor, VS Code, Visual Studio, Cline, Windsurf, Antigravity) and inject the correct configuration for you:
222
222
 
223
223
  ```bash
224
224
  npx -y engram-mcp-server --install
@@ -1,5 +1,5 @@
1
1
  export declare const SERVER_NAME = "engram-mcp-server";
2
- export declare const SERVER_VERSION = "1.2.1";
2
+ export declare const SERVER_VERSION = "1.2.2";
3
3
  export declare const TOOL_PREFIX = "engram";
4
4
  export declare const DB_DIR_NAME = ".engram";
5
5
  export declare const DB_FILE_NAME = "memory.db";
package/dist/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  // Engram MCP Server — Constants
3
3
  // ============================================================================
4
4
  export const SERVER_NAME = "engram-mcp-server";
5
- export const SERVER_VERSION = "1.2.1";
5
+ export const SERVER_VERSION = "1.2.2";
6
6
  export const TOOL_PREFIX = "engram";
7
7
  // Database
8
8
  export const DB_DIR_NAME = ".engram";
package/dist/installer.js CHANGED
@@ -44,6 +44,13 @@ const IDE_CONFIGS = {
44
44
  ],
45
45
  format: "mcpServers",
46
46
  },
47
+ visualstudio: {
48
+ name: "Visual Studio 2022",
49
+ paths: [
50
+ path.join(HOME, ".mcp.json"), // Global config for Visual Studio
51
+ ],
52
+ format: "servers",
53
+ },
47
54
  };
48
55
  // ─── Engram Entry ────────────────────────────────────────────────────
49
56
  function makeEngramEntry(format) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "engram-mcp-server",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Engram — Persistent Memory Cortex for AI coding agents. Gives agents session continuity, change tracking, decision logging, and project intelligence across sessions.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/constants.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  // ============================================================================
4
4
 
5
5
  export const SERVER_NAME = "engram-mcp-server";
6
- export const SERVER_VERSION = "1.2.1";
6
+ export const SERVER_VERSION = "1.2.2";
7
7
  export const TOOL_PREFIX = "engram";
8
8
 
9
9
  // Database
package/src/installer.ts CHANGED
@@ -47,6 +47,13 @@ const IDE_CONFIGS: Record<string, any> = {
47
47
  ],
48
48
  format: "mcpServers",
49
49
  },
50
+ visualstudio: {
51
+ name: "Visual Studio 2022",
52
+ paths: [
53
+ path.join(HOME, ".mcp.json"), // Global config for Visual Studio
54
+ ],
55
+ format: "servers",
56
+ },
50
57
  };
51
58
 
52
59
  // ─── Engram Entry ────────────────────────────────────────────────────