@simplexlat/memhub 0.1.0
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 +29 -0
- package/dist/cli.js +1893 -0
- package/dist/cli.js.map +1 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# MemHub CLI & MCP Server
|
|
2
|
+
|
|
3
|
+
One global installation connects MemHub to Cursor, Claude Code, Windsurf,
|
|
4
|
+
Cline, Codex, Antigravity, and any client that supports stdio MCP servers.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npm install --global @simplexlat/memhub
|
|
8
|
+
memhub login
|
|
9
|
+
memhub install all
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
For a generic MCP client, use this server command:
|
|
13
|
+
|
|
14
|
+
```json
|
|
15
|
+
{
|
|
16
|
+
"mcpServers": {
|
|
17
|
+
"memhub": {
|
|
18
|
+
"command": "memhub",
|
|
19
|
+
"args": ["serve"]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Credentials are stored in the owner-only `~/.memhub/config.json` file instead
|
|
26
|
+
of being copied into every IDE configuration.
|
|
27
|
+
|
|
28
|
+
The default cloud endpoint is `https://memhub.simplex.lat`; use `--url` only
|
|
29
|
+
for local development or a dedicated staging environment.
|