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.
- package/README.md +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# getmnemo-mcp
|
|
2
2
|
|
|
3
|
-
Model Context Protocol server for [
|
|
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
|
|
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
|
-
"
|
|
30
|
+
"getmnemo": {
|
|
31
31
|
"command": "npx",
|
|
32
|
-
"args": ["-y", "
|
|
32
|
+
"args": ["-y", "getmnemo-mcp"],
|
|
33
33
|
"env": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
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.
|
|
42
|
+
Get an API key at <https://app.mnemohq.com/settings/api-keys>.
|
|
43
43
|
|
|
44
|
-
### Hosted (HTTP/SSE) at `mcp.
|
|
44
|
+
### Hosted (HTTP/SSE) at `mcp.mnemohq.com`
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx -y install-mcp@latest https://mcp.
|
|
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-
|
|
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
|
|
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
|
|
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.
|
|
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",
|