@blacksmithers/vaultforge 1.0.1 → 1.0.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 +9 -7
- package/manifest.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -279,15 +279,17 @@ The vault maps itself.
|
|
|
279
279
|
|
|
280
280
|
### Claude Desktop (one-click)
|
|
281
281
|
|
|
282
|
-
|
|
282
|
+
**Windows** — [⬇ Download vaultforge.mcpb](https://github.com/blacksmithers/vaultforge/releases/latest/download/vaultforge.mcpb) — open the file, enter your vault path, done.
|
|
283
283
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
| Linux | `vaultforge.mcpb` |
|
|
284
|
+
**macOS:**
|
|
285
|
+
```bash
|
|
286
|
+
curl -fsSL https://github.com/blacksmithers/vaultforge/releases/latest/download/vaultforge.mcpb -o /tmp/vaultforge.mcpb && open /tmp/vaultforge.mcpb
|
|
287
|
+
```
|
|
289
288
|
|
|
290
|
-
|
|
289
|
+
**Linux:**
|
|
290
|
+
```bash
|
|
291
|
+
curl -fsSL https://github.com/blacksmithers/vaultforge/releases/latest/download/vaultforge.mcpb -o /tmp/vaultforge.mcpb && xdg-open /tmp/vaultforge.mcpb
|
|
292
|
+
```
|
|
291
293
|
|
|
292
294
|
### Claude Code
|
|
293
295
|
|
package/manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest_version": "0.3",
|
|
3
3
|
"name": "@blacksmithers/vaultforge",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"description": "Blazing-fast local MCP server for Obsidian vault operations via stdio",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Solutions Forge LTDA",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"mcp_config": {
|
|
15
15
|
"command": "node",
|
|
16
16
|
"args": [
|
|
17
|
-
"dist/index.js",
|
|
17
|
+
"${__dirname}/dist/index.js",
|
|
18
18
|
"${user_config.vault_path}"
|
|
19
19
|
]
|
|
20
20
|
}
|