@syndash/research-vault-mcp 1.1.0 → 1.1.1
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 +4 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
# @syndash/research-vault-mcp
|
|
2
2
|
|
|
3
|
-
MCP (Model Context Protocol) server for
|
|
3
|
+
MCP (Model Context Protocol) server for Nolan's research vault (private) — semantic search + memory persistence over 200+ markdown documents via local Gemma (Atomic Chat) or cloud LLM fallback.
|
|
4
4
|
|
|
5
5
|
**Part of**: DASH SHATTER / SynDASH ecosystem.
|
|
6
6
|
**Home**: [github.com/Fearvox/Evensong](https://github.com/Fearvox/Evensong) — `packages/research-vault-mcp/`
|
|
7
|
-
**Status**: Wave 3+ — not yet published to npm. Plan: `docs/superpowers/plans/2026-04-19-wave2d-submodule-mcp-package-prep.md`.
|
|
8
7
|
|
|
9
|
-
## Install & Run
|
|
8
|
+
## Install & Run
|
|
10
9
|
|
|
11
10
|
```bash
|
|
12
11
|
# Via bun (recommended — native TS execution)
|
|
@@ -52,11 +51,11 @@ See `src/vault.ts` and `src/amplify.ts` for current tool definitions:
|
|
|
52
51
|
- `vault_status` — decay scores + retention health
|
|
53
52
|
- `vault_taxonomy` — category tree + item counts
|
|
54
53
|
- `vault_batch_analyze` — raw queue status + preview
|
|
55
|
-
- `amplify_*` — remote RAG
|
|
54
|
+
- `amplify_*` — remote RAG relay layer powered by SynDASH (Amplify-compatible API endpoint, self-hosted relay; no external vendor required)
|
|
56
55
|
|
|
57
56
|
## Architecture
|
|
58
57
|
|
|
59
|
-
|
|
58
|
+
Retrieval uses a **unified multi-signal ranker** (not 3 separate subsystems):
|
|
60
59
|
|
|
61
60
|
```
|
|
62
61
|
score(d, q, t) = 0.35·BM25(q,d) + 0.35·cosine(embed(q), embed(d))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syndash/research-vault-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "MCP server for Nolan's research vault — semantic search + memory persistence over 200+ markdown docs via local Gemma (Atomic Chat) or cloud LLM fallback. Part of DASH SHATTER / SynDASH.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|