getmnemo-mcp 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +13 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # @ledgermem/mcp-server
1
+ # getmnemo-mcp
2
2
 
3
- Model Context Protocol server for [LedgerMem Memory](https://proofly.dev) — exposes long-term memory tools to any MCP client (Claude Desktop, Cursor, Windsurf, VS Code, Zed).
3
+ Model Context Protocol server for [Mnemo Memory](https://mnemohq.com) — exposes long-term memory tools to any MCP client (Claude Desktop, Cursor, Windsurf, VS Code, Zed).
4
4
 
5
5
  ## Tools
6
6
 
@@ -19,7 +19,7 @@ All calls are scoped to a workspace and (optionally) an actor.
19
19
  ### Claude Desktop / Cursor / Windsurf / VS Code / Zed
20
20
 
21
21
  ```bash
22
- npx -y @ledgermem/mcp-server
22
+ npx -y getmnemo-mcp
23
23
  ```
24
24
 
25
25
  Or wire it into the client config directly. Example for Claude Desktop (`~/Library/Application Support/Claude/claude_desktop_config.json`):
@@ -27,33 +27,33 @@ Or wire it into the client config directly. Example for Claude Desktop (`~/Libra
27
27
  ```json
28
28
  {
29
29
  "mcpServers": {
30
- "ledgermem": {
30
+ "getmnemo": {
31
31
  "command": "npx",
32
- "args": ["-y", "@ledgermem/mcp-server"],
32
+ "args": ["-y", "getmnemo-mcp"],
33
33
  "env": {
34
- "LEDGERMEM_API_KEY": "lk_live_...",
35
- "LEDGERMEM_WORKSPACE_ID": "ws_..."
34
+ "GETMNEMO_API_KEY": "lk_live_...",
35
+ "GETMNEMO_WORKSPACE_ID": "ws_..."
36
36
  }
37
37
  }
38
38
  }
39
39
  }
40
40
  ```
41
41
 
42
- Get an API key at <https://app.proofly.dev/settings/api-keys>.
42
+ Get an API key at <https://app.mnemohq.com/settings/api-keys>.
43
43
 
44
- ### Hosted (HTTP/SSE) at `mcp.proofly.dev`
44
+ ### Hosted (HTTP/SSE) at `mcp.mnemohq.com`
45
45
 
46
46
  ```bash
47
- npx -y install-mcp@latest https://mcp.proofly.dev/mcp --client claude
47
+ npx -y install-mcp@latest https://mcp.mnemohq.com/mcp --client claude
48
48
  ```
49
49
 
50
- (OAuth flow lands in v0.2 — until then the hosted endpoint accepts `x-ledgermem-api-key` + `x-ledgermem-workspace-id` headers from trusted clients.)
50
+ (OAuth flow lands in v0.2 — until then the hosted endpoint accepts `x-getmnemo-api-key` + `x-getmnemo-workspace-id` headers from trusted clients.)
51
51
 
52
52
  ## Develop
53
53
 
54
54
  ```bash
55
55
  npm install
56
- cp .env.example .env # fill in LEDGERMEM_API_KEY + LEDGERMEM_WORKSPACE_ID
56
+ cp .env.example .env # fill in GETMNEMO_API_KEY + GETMNEMO_WORKSPACE_ID
57
57
  npm run dev # stdio
58
58
  npm run dev:http # HTTP/SSE on :8787
59
59
  npm run build # bundle to dist/
@@ -65,7 +65,7 @@ npm run build # bundle to dist/
65
65
  - **HTTP/SSE** (`src/http.ts`): single long-running process for hosted use, header-or-OAuth auth.
66
66
  - Both transports share `src/server.ts` (tool registration + dispatch) and `src/api-client.ts` (typed REST wrapper).
67
67
 
68
- The server deliberately does NOT depend on `@ledgermem/memory` (the JS SDK) so it can ship independently.
68
+ The server deliberately does NOT depend on `getmnemo` (the JS SDK) so it can ship independently.
69
69
 
70
70
  ## License
71
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "getmnemo-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Model Context Protocol server for Mnemo Memory — exposes search/add/update/delete tools to Claude Desktop, Cursor, Windsurf, VS Code, Zed.",
5
5
  "type": "module",
6
6
  "license": "MIT",