@blacksmithers/vaultforge 1.0.1 → 1.0.3

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 CHANGED
@@ -279,15 +279,17 @@ The vault maps itself.
279
279
 
280
280
  ### Claude Desktop (one-click)
281
281
 
282
- Download the `.mcpb` file from the [latest release](https://github.com/blacksmithers/vaultforge/releases/latest) and double-click to install:
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
- | Platform | File |
285
- |----------|------|
286
- | Windows | `vaultforge.mcpb` |
287
- | macOS | `vaultforge.mcpb` |
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
- Claude Desktop will prompt you for your vault path during installation.
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
- "name": "@blacksmithers/vaultforge",
4
- "version": "1.0.1",
3
+ "name": "VaultForge",
4
+ "version": "1.0.3",
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blacksmithers/vaultforge",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Blazing-fast local MCP server for Obsidian vault operations via stdio",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,7 +22,8 @@
22
22
  "start": "node dist/index.js",
23
23
  "test": "vitest run",
24
24
  "test:watch": "vitest",
25
- "test:coverage": "vitest run --coverage"
25
+ "test:coverage": "vitest run --coverage",
26
+ "inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js"
26
27
  },
27
28
  "repository": {
28
29
  "type": "git",