@raviolelabs/engram-mcp 0.5.2 → 0.5.3

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.
Files changed (2) hide show
  1. package/README.md +13 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,9 +13,11 @@ EngramMCP is the memory layer your agents need — ingests from your real source
13
13
 
14
14
  ## Install
15
15
 
16
+ Every install ends with one shared step: **open your dashboard at [engram-mcp.com/dashboard](https://engram-mcp.com/dashboard)** to link your PC and watch your memory graph build itself in real time. Pick whichever install path fits your workflow.
17
+
16
18
  ### One command (recommended)
17
19
 
18
- Get an invite at **[engram-mcp.com](https://engram-mcp.com)** (signup is free + open). You'll receive a personalized install command by email:
20
+ Sign up at **[engram-mcp.com](https://engram-mcp.com)** (signup is free + open). The dashboard gives you a personalized one-line install command:
19
21
 
20
22
  ```bash
21
23
  curl -fsSL https://engram-mcp.com/install/<INVITE_TOKEN> | sh
@@ -23,6 +25,8 @@ curl -fsSL https://engram-mcp.com/install/<INVITE_TOKEN> | sh
23
25
 
24
26
  This `npm install`s the package, sets up Ollama (auto-installed if missing), pulls `nomic-embed-text`, writes `~/.engram/config.json`, links your account, registers a background service (LaunchAgent on macOS, systemd-user on Linux, NSSM on Windows), updates `~/.claude/mcp.json` + `~/.cursor/mcp.json`, and opens your dashboard at engram-mcp.com — all in under 60 seconds.
25
27
 
28
+ **Next step**: the install script ends by pointing you to `https://engram-mcp.com/dashboard`. Open it — your PC appears under **Devices**, and the **Brain** tab visualises memories as you add them.
29
+
26
30
  ### Manual install (no cloud account needed)
27
31
 
28
32
  The local server is source-available under the Elastic License 2.0 and works fully offline. Install via npm:
@@ -33,6 +37,14 @@ npm install -g @raviolelabs/engram-mcp
33
37
  npx -y @raviolelabs/engram-mcp --no-http
34
38
  ```
35
39
 
40
+ **Want to link this PC to the dashboard later?** Sign up at [engram-mcp.com](https://engram-mcp.com), click *Connect this PC* on the dashboard, copy the token shown, then on your machine:
41
+
42
+ ```bash
43
+ engram-mcp pair --token <TOKEN_FROM_DASHBOARD>
44
+ ```
45
+
46
+ That re-pairs an already-installed PC without re-running the full installer — useful after revoking a device, switching accounts, or pairing a second machine.
47
+
36
48
  Then add to your agent's MCP config (`~/.claude/mcp.json` for Claude Code, similar for Cursor):
37
49
 
38
50
  ```json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raviolelabs/engram-mcp",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "mcpName": "io.github.RavioleLabs/engram-mcp",
5
5
  "description": "EngramMCP — local-first semantic memory layer for AI agents",
6
6
  "license": "Elastic-2.0",