@danielmarbach/mnemonic-mcp 0.7.0 → 0.8.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/CHANGELOG.md +16 -0
- package/README.md +30 -0
- package/build/index.js +312 -212
- package/build/index.js.map +1 -1
- package/build/project.js +41 -12
- package/build/project.js.map +1 -1
- package/build/storage.d.ts +7 -1
- package/build/storage.d.ts.map +1 -1
- package/build/storage.js +12 -3
- package/build/storage.js.map +1 -1
- package/build/structured-content.d.ts +16 -40
- package/build/structured-content.d.ts.map +1 -1
- package/build/structured-content.js +7 -1
- package/build/structured-content.js.map +1 -1
- package/build/vault.d.ts +36 -7
- package/build/vault.d.ts.map +1 -1
- package/build/vault.js +124 -25
- package/build/vault.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to `mnemonic` will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is loosely based on Keep a Changelog and uses semver-style version headings.
|
|
6
6
|
|
|
7
|
+
## [0.8.0] - 2026-03-14
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- All MCP tool descriptions rewritten for self-contained routing and sub-vault awareness
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Homebrew tap support: `brew install danielmarbach/mnemonic/mnemonic-mcp`.
|
|
16
|
+
- Git submodule support: project vault creation and identity resolution now walk up through submodule boundaries to the superproject root.
|
|
17
|
+
- Multi-vault support: project git roots can contain multiple vault folders (`.mnemonic-<name>`) alongside the primary `.mnemonic/`. Sub-vaults share the primary vault's embeddings directory and appear in `searchOrder`, `allKnownVaults`, and all list/recall operations.
|
|
18
|
+
- `move_memory` accepts optional `vaultFolder` parameter to target specific sub-vaults.
|
|
19
|
+
- `Storage` accepts optional `embeddingsDirOverride` to redirect where embeddings are stored.
|
|
20
|
+
- `Vault` interface gains `vaultFolderName` field.
|
|
21
|
+
- `VaultManager` exposes `getVaultByFolder(cwd, folderName)` method.
|
|
22
|
+
|
|
7
23
|
## [0.7.0] - 2026-03-13
|
|
8
24
|
|
|
9
25
|
### Added
|
package/README.md
CHANGED
|
@@ -91,6 +91,21 @@ npm install @danielmarbach/mnemonic-mcp
|
|
|
91
91
|
npm install @danielmarbach/mnemonic-mcp@0.2.0
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
+
### Homebrew
|
|
95
|
+
|
|
96
|
+
The formula lives in this repository. Tap it with an explicit URL so no separate repository is needed:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
brew tap danielmarbach/mnemonic-mcp https://github.com/danielmarbach/mnemonic
|
|
100
|
+
brew install mnemonic-mcp
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Or in a single step:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
brew install danielmarbach/mnemonic-mcp/mnemonic-mcp
|
|
107
|
+
```
|
|
108
|
+
|
|
94
109
|
### Docker Hub
|
|
95
110
|
|
|
96
111
|
Pre-built images for `linux/amd64` and `linux/arm64`:
|
|
@@ -135,6 +150,21 @@ For a fixed installed version, point at the local binary instead:
|
|
|
135
150
|
}
|
|
136
151
|
```
|
|
137
152
|
|
|
153
|
+
### Claude Desktop / Cursor (Homebrew)
|
|
154
|
+
|
|
155
|
+
```json
|
|
156
|
+
{
|
|
157
|
+
"mcpServers": {
|
|
158
|
+
"mnemonic": {
|
|
159
|
+
"command": "mnemonic",
|
|
160
|
+
"env": {
|
|
161
|
+
"VAULT_PATH": "/Users/you/mnemonic-vault"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
```
|
|
167
|
+
|
|
138
168
|
### Claude Desktop / Cursor (Docker)
|
|
139
169
|
|
|
140
170
|
```json
|