@syndash/research-vault-mcp 1.1.3 → 1.1.4
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 +10 -2
- package/README.md +10 -7
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 1.1.4 — 2026-05-10
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Published the package source under the canonical Dash Research Vault repo path: `packages/research-vault-mcp`.
|
|
10
|
+
- Updated README language to treat Dash Research Vault as the package home and Evensong as research provenance, not the npm package repository.
|
|
11
|
+
- Updated package metadata description and release docs to match the public npm source path.
|
|
12
|
+
|
|
5
13
|
## 1.1.3 — 2026-05-10
|
|
6
14
|
|
|
7
15
|
### Added
|
|
@@ -24,8 +32,8 @@
|
|
|
24
32
|
- Default MCP transport is now `stdio`, matching command-launched MCP clients.
|
|
25
33
|
- The npm bin is a Node-compatible launcher that delegates server execution to Bun.
|
|
26
34
|
- Published package includes `dist/server.js` via `prepack` build and `files` allowlist.
|
|
27
|
-
- README now documents
|
|
28
|
-
- Package metadata now
|
|
35
|
+
- README now documents install commands, Claude config, Bun runtime requirement, and explicit SSE mode.
|
|
36
|
+
- Package metadata now includes public repository information and Apache-2.0 package license.
|
|
29
37
|
|
|
30
38
|
### Verified
|
|
31
39
|
|
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# @syndash/research-vault-mcp
|
|
2
2
|
|
|
3
|
-
Research Vault is the
|
|
3
|
+
Research Vault MCP is the installable server for **Dash Research Vault**. It gives MCP-compatible agents a public-safe way to search, inspect, and operate a markdown knowledge vault.
|
|
4
4
|
|
|
5
|
-
It is not the whole Evensong
|
|
5
|
+
It is not the whole vault template or the whole Evensong research project. This package is the runtime adapter: MCP tools, read-only defaults, bounded reads, public-surface redaction, and optional mutation profiles for operator-approved sessions.
|
|
6
|
+
|
|
7
|
+
Source: <https://github.com/Fearvox/dash-research-vault/tree/main/packages/research-vault-mcp>
|
|
6
8
|
|
|
7
9
|
## Install
|
|
8
10
|
|
|
@@ -77,7 +79,7 @@ Set the vault location with an environment variable before launching your MCP cl
|
|
|
77
79
|
export VAULT_ROOT=/path/to/research-vault
|
|
78
80
|
```
|
|
79
81
|
|
|
80
|
-
The package is designed for markdown-based knowledge bases. Keep private vault contents outside the public
|
|
82
|
+
The package is designed for markdown-based knowledge bases. Keep private vault contents outside the public Dash Research Vault repo.
|
|
81
83
|
|
|
82
84
|
## MCP Profiles
|
|
83
85
|
|
|
@@ -117,6 +119,7 @@ Published packages include:
|
|
|
117
119
|
- `dist/server.js`
|
|
118
120
|
- `src/**/*.ts` for source inspection
|
|
119
121
|
- `README.md`
|
|
122
|
+
- `CHANGELOG.md`
|
|
120
123
|
- `package.json`
|
|
121
124
|
|
|
122
125
|
The bin prefers `dist/server.js`. In a monorepo checkout without `dist`, it falls back to `bun run src/server.ts` so development remains fast without a separate compile step.
|
|
@@ -133,16 +136,16 @@ score(d, q, t) = lexical(q,d)
|
|
|
133
136
|
+ summary-level weight(d)
|
|
134
137
|
```
|
|
135
138
|
|
|
136
|
-
The
|
|
139
|
+
The research papers and figures in the repository root document the memory-causation evidence behind the vault template. The MCP package stays focused on the installable server surface.
|
|
137
140
|
|
|
138
141
|
## Node compatibility status
|
|
139
142
|
|
|
140
|
-
The package is intentionally Bun-native today because the server uses Bun APIs
|
|
143
|
+
The package is intentionally Bun-native today because the server uses Bun APIs. The npm bin is Node-compatible only as a launcher: it locates `dist/server.js` or `src/server.ts`, then delegates execution to `bun`. This keeps package installation convenient while avoiding a misleading claim that the MCP server itself runs under plain Node.js.
|
|
141
144
|
|
|
142
145
|
## License
|
|
143
146
|
|
|
144
|
-
Apache-2.0 for package code. Research artifacts in the
|
|
147
|
+
Apache-2.0 for package code. Research artifacts in the repository root may use separate licenses; check the repository root license files.
|
|
145
148
|
|
|
146
149
|
## Releases
|
|
147
150
|
|
|
148
|
-
See [CHANGELOG.md](./CHANGELOG.md). Current npm release: `1.1.
|
|
151
|
+
See [CHANGELOG.md](./CHANGELOG.md). Current npm release: `1.1.4`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syndash/research-vault-mcp",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.4",
|
|
4
|
+
"description": "DASH Research Vault MCP server — local-first semantic search, note persistence, and public-safe knowledge-base tools for MCP-compatible agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"research-vault-mcp": "bin/research-vault-mcp.mjs"
|