@mauricio.wolff/mcp-obsidian 0.5.0 → 0.5.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/dist/server.js CHANGED
@@ -8,7 +8,7 @@ import { PathFilter } from "./src/pathfilter.js";
8
8
  import { SearchService } from "./src/search.js";
9
9
  const vaultPath = process.argv[2];
10
10
  if (!vaultPath) {
11
- console.error("Usage: node server.ts /path/to/vault");
11
+ console.error("Usage: npx @mauricio.wolff/mcp-obsidian /path/to/vault");
12
12
  process.exit(1);
13
13
  }
14
14
  // Initialize services
@@ -18,7 +18,7 @@ const fileSystem = new FileSystemService(vaultPath, pathFilter, frontmatterHandl
18
18
  const searchService = new SearchService(vaultPath, pathFilter);
19
19
  const server = new Server({
20
20
  name: "mcp-obsidian",
21
- version: "0.5.0"
21
+ version: "0.5.1"
22
22
  }, {
23
23
  capabilities: {
24
24
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mauricio.wolff/mcp-obsidian",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Lightweight MCP server for safe Obsidian vault access",
5
5
  "author": "bitbonsai",
6
6
  "license": "MIT",
package/server.ts CHANGED
@@ -13,7 +13,7 @@ import { SearchService } from "./src/search.js";
13
13
 
14
14
  const vaultPath = process.argv[2];
15
15
  if (!vaultPath) {
16
- console.error("Usage: node server.ts /path/to/vault");
16
+ console.error("Usage: npx @mauricio.wolff/mcp-obsidian /path/to/vault");
17
17
  process.exit(1);
18
18
  }
19
19
 
@@ -25,7 +25,7 @@ const searchService = new SearchService(vaultPath, pathFilter);
25
25
 
26
26
  const server = new Server({
27
27
  name: "mcp-obsidian",
28
- version: "0.5.0"
28
+ version: "0.5.1"
29
29
  }, {
30
30
  capabilities: {
31
31
  tools: {},