obsidian-mcp-pro 1.1.0 → 1.1.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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 rps321
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 rps321
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,198 +1,211 @@
1
- # obsidian-mcp-pro
2
-
3
- **The most feature-complete MCP server for Obsidian vaults.**
4
-
5
- [![npm version](https://img.shields.io/npm/v/obsidian-mcp-pro.svg)](https://www.npmjs.com/package/obsidian-mcp-pro)
6
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7
- [![Node >= 18](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](https://nodejs.org/)
8
-
9
- Give AI assistants deep, structured access to your Obsidian knowledge base. Read, write, search, tag, analyze links, traverse graphs, and manipulate canvases — all through the [Model Context Protocol](https://modelcontextprotocol.io/).
10
-
11
- ---
12
-
13
- ## Features
14
-
15
- ### Read & Search
16
- - Full-text search across all vault notes
17
- - Read individual notes with frontmatter parsing
18
- - List and filter notes by folder, date, or pattern
19
- - Search by frontmatter fields and values
20
- - Retrieve daily notes automatically
21
-
22
- ### Write & Modify
23
- - Create new notes with frontmatter and content
24
- - Append or prepend content to existing notes
25
- - Update frontmatter properties programmatically
26
- - Move and rename notes with automatic link updates
27
- - Delete notes safely
28
-
29
- ### Tags
30
- - Build and query a complete tag index
31
- - Search notes by single or multiple tags
32
-
33
- ### Links & Graph
34
- - Get backlinks (what links *to* a note)
35
- - Get outlinks (what a note links *to*)
36
- - Find orphan notes with no inbound or outbound links
37
- - Detect broken links pointing to non-existent notes
38
- - Traverse graph neighbors to a configurable depth
39
-
40
- ### Canvas
41
- - Read `.canvas` files with full node and edge data
42
- - Add new nodes (text, file, link, group) to canvases
43
- - Add edges between canvas nodes
44
- - List all canvases in the vault
45
-
46
- ### MCP Resources
47
- - `obsidian://note/{path}` read any note by its vault-relative path
48
- - `obsidian://tags` retrieve the full tag index as JSON
49
- - `obsidian://daily` get today's daily note content
50
-
51
- ---
52
-
53
- ## Quick Start
54
-
55
- ### Claude Desktop
56
-
57
- Add this to your Claude Desktop configuration file (`claude_desktop_config.json`):
58
-
59
- ```json
60
- {
61
- "mcpServers": {
62
- "obsidian": {
63
- "command": "npx",
64
- "args": ["-y", "obsidian-mcp-pro"]
65
- }
66
- }
67
- }
68
- ```
69
-
70
- If you have multiple vaults, specify which one:
71
-
72
- ```json
73
- {
74
- "mcpServers": {
75
- "obsidian": {
76
- "command": "npx",
77
- "args": ["-y", "obsidian-mcp-pro"],
78
- "env": {
79
- "OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
80
- }
81
- }
82
- }
83
- }
84
- ```
85
-
86
- ### Claude Code
87
-
88
- ```bash
89
- claude mcp add obsidian-mcp-pro -- npx -y obsidian-mcp-pro
90
- ```
91
-
92
- ---
93
-
94
- ## Configuration
95
-
96
- The server locates your vault using the following priority:
97
-
98
- | Priority | Method | Description |
99
- |----------|--------|-------------|
100
- | 1 | `OBSIDIAN_VAULT_PATH` | Environment variable with the absolute path to your vault |
101
- | 2 | `OBSIDIAN_VAULT_NAME` | Environment variable to select a vault by folder name when multiple vaults exist |
102
- | 3 | Auto-detection | Reads Obsidian's global config (`obsidian.json`) and uses the first valid vault found |
103
-
104
- Auto-detection works on **macOS**, **Windows**, and **Linux** by reading the platform-specific Obsidian configuration directory.
105
-
106
- ---
107
-
108
- ## Tool Reference
109
-
110
- | Tool | Description | Key Parameters |
111
- |------|-------------|----------------|
112
- | `search_notes` | Full-text search across all notes | `query`, `caseSensitive`, `maxResults`, `folder` |
113
- | `get_note` | Read a note's content and metadata | `path` |
114
- | `list_notes` | List notes in the vault or a folder | `folder`, `limit` |
115
- | `get_daily_note` | Get today's (or a specific date's) daily note | `date` |
116
- | `search_by_frontmatter` | Find notes by frontmatter property values | `property`, `value`, `folder` |
117
- | `create_note` | Create a new note with content and frontmatter | `path`, `content`, `frontmatter` |
118
- | `append_to_note` | Append content to an existing note | `path`, `content`, `ensureNewline` |
119
- | `prepend_to_note` | Prepend content after frontmatter | `path`, `content` |
120
- | `update_frontmatter` | Update frontmatter properties on a note | `path`, `properties` |
121
- | `create_daily_note` | Create today's daily note from template | `date`, `content`, `templatePath` |
122
- | `move_note` | Move or rename a note | `oldPath`, `newPath` |
123
- | `delete_note` | Delete a note from the vault | `path`, `permanent` |
124
- | `get_tags` | Get all tags and their usage counts | `sortBy` |
125
- | `search_by_tag` | Find all notes with a specific tag | `tag`, `includeContent` |
126
- | `get_backlinks` | Get all notes that link to a given note | `path` |
127
- | `get_outlinks` | Get all links from a given note | `path` |
128
- | `find_orphans` | Find notes with no links in or out | `includeOutlinksCheck` |
129
- | `find_broken_links` | Detect links pointing to non-existent notes | `folder` |
130
- | `get_graph_neighbors` | Get notes connected within N link hops | `path`, `depth`, `direction` |
131
- | `list_canvases` | List all `.canvas` files in the vault | |
132
- | `read_canvas` | Read a `.canvas` file's nodes and edges | `path` |
133
- | `add_canvas_node` | Add a node to a canvas | `canvasPath`, `type`, `content`, `x`, `y` |
134
- | `add_canvas_edge` | Add an edge between two canvas nodes | `canvasPath`, `fromNode`, `toNode` |
135
-
136
- ---
137
-
138
- ## MCP Resources
139
-
140
- Resources provide a URI-based way to access vault data:
141
-
142
- | Resource URI | Description |
143
- |-------------|-------------|
144
- | `obsidian://note/{path}` | Read any note by its vault-relative path |
145
- | `obsidian://tags` | Full tag index with file lists (JSON) |
146
- | `obsidian://daily` | Today's daily note content |
147
-
148
- ---
149
-
150
- ## Development
151
-
152
- ```bash
153
- # Clone the repository
154
- git clone https://github.com/rps321321/obsidian-mcp-pro.git
155
- cd obsidian-mcp-pro
156
-
157
- # Install dependencies
158
- npm install
159
-
160
- # Build
161
- npm run build
162
-
163
- # Run in development (watch mode)
164
- npm run dev
165
-
166
- # Start the server locally
167
- OBSIDIAN_VAULT_PATH=/path/to/vault npm start
168
- ```
169
-
170
- ### Project Structure
171
-
172
- ```
173
- src/
174
- index.ts # Server entry point and resource registration
175
- config.ts # Vault detection and configuration
176
- types.ts # Shared TypeScript interfaces
177
- lib/
178
- vault.ts # Core vault operations (read, search, list)
179
- markdown.ts # Frontmatter parsing and tag extraction
180
- tools/
181
- read.ts # Search, get, list, daily note tools
182
- write.ts # Create, append, prepend, update, move, delete tools
183
- tags.ts # Tag index and tag search tools
184
- links.ts # Backlinks, outlinks, orphans, broken links, graph tools
185
- canvas.ts # Canvas read, node, edge, and list tools
186
- ```
187
-
188
- ---
189
-
190
- ## License
191
-
192
- MIT
193
-
194
- ---
195
-
196
- ## Contributing
197
-
198
- Contributions welcome! Please open an issue first to discuss what you'd like to change. Pull requests without a corresponding issue may be closed.
1
+ # obsidian-mcp-pro
2
+
3
+ **The most feature-complete MCP server for Obsidian vaults.**
4
+
5
+ [![npm version](https://img.shields.io/npm/v/obsidian-mcp-pro.svg)](https://www.npmjs.com/package/obsidian-mcp-pro)
6
+ [![npm downloads](https://img.shields.io/npm/dm/obsidian-mcp-pro.svg)](https://www.npmjs.com/package/obsidian-mcp-pro)
7
+ [![GitHub stars](https://img.shields.io/github/stars/rps321321/obsidian-mcp-pro?style=flat&logo=github)](https://github.com/rps321321/obsidian-mcp-pro)
8
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
9
+ [![Node >= 18](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](https://nodejs.org/)
10
+ [![Tests](https://img.shields.io/badge/tests-122_passing-brightgreen.svg)](https://github.com/rps321321/obsidian-mcp-pro)
11
+
12
+ Give AI assistants deep, structured access to your Obsidian knowledge base. Read, write, search, tag, analyze links, traverse graphs, and manipulate canvases — all through the [Model Context Protocol](https://modelcontextprotocol.io/).
13
+
14
+ [![obsidian-mcp-pro MCP server](https://glama.ai/mcp/servers/rps321321/obsidian-mcp-pro/badges/card.svg)](https://glama.ai/mcp/servers/rps321321/obsidian-mcp-pro)
15
+
16
+ ---
17
+
18
+ ## Features
19
+
20
+ ### Read & Search
21
+ - Full-text search across all vault notes
22
+ - Read individual notes with frontmatter parsing
23
+ - List and filter notes by folder, date, or pattern
24
+ - Search by frontmatter fields and values
25
+ - Retrieve daily notes automatically
26
+
27
+ ### Write & Modify
28
+ - Create new notes with frontmatter and content
29
+ - Append or prepend content to existing notes
30
+ - Update frontmatter properties programmatically
31
+ - Move and rename notes with automatic link updates
32
+ - Delete notes safely
33
+
34
+ ### Tags
35
+ - Build and query a complete tag index
36
+ - Search notes by single or multiple tags
37
+
38
+ ### Links & Graph
39
+ - Get backlinks (what links *to* a note)
40
+ - Get outlinks (what a note links *to*)
41
+ - Find orphan notes with no inbound or outbound links
42
+ - Detect broken links pointing to non-existent notes
43
+ - Traverse graph neighbors to a configurable depth
44
+
45
+ ### Canvas
46
+ - Read `.canvas` files with full node and edge data
47
+ - Add new nodes (text, file, link, group) to canvases
48
+ - Add edges between canvas nodes
49
+ - List all canvases in the vault
50
+
51
+ ### MCP Resources
52
+ - `obsidian://note/{path}` — read any note by its vault-relative path
53
+ - `obsidian://tags` — retrieve the full tag index as JSON
54
+ - `obsidian://daily` — get today's daily note content
55
+
56
+ ---
57
+
58
+ ## Quick Start
59
+
60
+ ### Claude Desktop
61
+
62
+ Add this to your Claude Desktop configuration file (`claude_desktop_config.json`):
63
+
64
+ ```json
65
+ {
66
+ "mcpServers": {
67
+ "obsidian": {
68
+ "command": "npx",
69
+ "args": ["-y", "obsidian-mcp-pro"]
70
+ }
71
+ }
72
+ }
73
+ ```
74
+
75
+ If you have multiple vaults, specify which one:
76
+
77
+ ```json
78
+ {
79
+ "mcpServers": {
80
+ "obsidian": {
81
+ "command": "npx",
82
+ "args": ["-y", "obsidian-mcp-pro"],
83
+ "env": {
84
+ "OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
85
+ }
86
+ }
87
+ }
88
+ }
89
+ ```
90
+
91
+ ### Claude Code
92
+
93
+ ```bash
94
+ claude mcp add obsidian-mcp-pro -- npx -y obsidian-mcp-pro
95
+ ```
96
+
97
+ ---
98
+
99
+ ## Configuration
100
+
101
+ The server locates your vault using the following priority:
102
+
103
+ | Priority | Method | Description |
104
+ |----------|--------|-------------|
105
+ | 1 | `OBSIDIAN_VAULT_PATH` | Environment variable with the absolute path to your vault |
106
+ | 2 | `OBSIDIAN_VAULT_NAME` | Environment variable to select a vault by folder name when multiple vaults exist |
107
+ | 3 | Auto-detection | Reads Obsidian's global config (`obsidian.json`) and uses the first valid vault found |
108
+
109
+ Auto-detection works on **macOS**, **Windows**, and **Linux** by reading the platform-specific Obsidian configuration directory.
110
+
111
+ ---
112
+
113
+ ## Tool Reference
114
+
115
+ | Tool | Description | Key Parameters |
116
+ |------|-------------|----------------|
117
+ | `search_notes` | Full-text search across all notes | `query`, `caseSensitive`, `maxResults`, `folder` |
118
+ | `get_note` | Read a note's content and metadata | `path` |
119
+ | `list_notes` | List notes in the vault or a folder | `folder`, `limit` |
120
+ | `get_daily_note` | Get today's (or a specific date's) daily note | `date` |
121
+ | `search_by_frontmatter` | Find notes by frontmatter property values | `property`, `value`, `folder` |
122
+ | `create_note` | Create a new note with content and frontmatter | `path`, `content`, `frontmatter` |
123
+ | `append_to_note` | Append content to an existing note | `path`, `content`, `ensureNewline` |
124
+ | `prepend_to_note` | Prepend content after frontmatter | `path`, `content` |
125
+ | `update_frontmatter` | Update frontmatter properties on a note | `path`, `properties` |
126
+ | `create_daily_note` | Create today's daily note from template | `date`, `content`, `templatePath` |
127
+ | `move_note` | Move or rename a note | `oldPath`, `newPath` |
128
+ | `delete_note` | Delete a note from the vault | `path`, `permanent` |
129
+ | `get_tags` | Get all tags and their usage counts | `sortBy` |
130
+ | `search_by_tag` | Find all notes with a specific tag | `tag`, `includeContent` |
131
+ | `get_backlinks` | Get all notes that link to a given note | `path` |
132
+ | `get_outlinks` | Get all links from a given note | `path` |
133
+ | `find_orphans` | Find notes with no links in or out | `includeOutlinksCheck` |
134
+ | `find_broken_links` | Detect links pointing to non-existent notes | `folder` |
135
+ | `get_graph_neighbors` | Get notes connected within N link hops | `path`, `depth`, `direction` |
136
+ | `list_canvases` | List all `.canvas` files in the vault | — |
137
+ | `read_canvas` | Read a `.canvas` file's nodes and edges | `path` |
138
+ | `add_canvas_node` | Add a node to a canvas | `canvasPath`, `type`, `content`, `x`, `y` |
139
+ | `add_canvas_edge` | Add an edge between two canvas nodes | `canvasPath`, `fromNode`, `toNode` |
140
+
141
+ ---
142
+
143
+ ## MCP Resources
144
+
145
+ Resources provide a URI-based way to access vault data:
146
+
147
+ | Resource URI | Description |
148
+ |-------------|-------------|
149
+ | `obsidian://note/{path}` | Read any note by its vault-relative path |
150
+ | `obsidian://tags` | Full tag index with file lists (JSON) |
151
+ | `obsidian://daily` | Today's daily note content |
152
+
153
+ ---
154
+
155
+ ## Development
156
+
157
+ ```bash
158
+ # Clone the repository
159
+ git clone https://github.com/rps321321/obsidian-mcp-pro.git
160
+ cd obsidian-mcp-pro
161
+
162
+ # Install dependencies
163
+ npm install
164
+
165
+ # Build
166
+ npm run build
167
+
168
+ # Run in development (watch mode)
169
+ npm run dev
170
+
171
+ # Start the server locally
172
+ OBSIDIAN_VAULT_PATH=/path/to/vault npm start
173
+ ```
174
+
175
+ ### Project Structure
176
+
177
+ ```
178
+ src/
179
+ index.ts # Server entry point and resource registration
180
+ config.ts # Vault detection and configuration
181
+ types.ts # Shared TypeScript interfaces
182
+ lib/
183
+ vault.ts # Core vault operations (read, search, list)
184
+ markdown.ts # Frontmatter parsing and tag extraction
185
+ tools/
186
+ read.ts # Search, get, list, daily note tools
187
+ write.ts # Create, append, prepend, update, move, delete tools
188
+ tags.ts # Tag index and tag search tools
189
+ links.ts # Backlinks, outlinks, orphans, broken links, graph tools
190
+ canvas.ts # Canvas read, node, edge, and list tools
191
+ ```
192
+
193
+ ---
194
+
195
+ ## Testing
196
+
197
+ ```bash
198
+ npm test
199
+ ```
200
+
201
+ 122 tests covering vault operations, markdown parsing (frontmatter, wikilinks, tags, code block detection), and integration tests with a mock vault.
202
+
203
+ ## License
204
+
205
+ MIT
206
+
207
+ ---
208
+
209
+ ## Contributing
210
+
211
+ Contributions welcome! Please open an issue first to discuss what you'd like to change. Pull requests without a corresponding issue may be closed.
package/build/index.js CHANGED
@@ -1,5 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  import * as fs from "fs/promises";
3
+ import { readFileSync } from "fs";
4
+ import * as path from "path";
5
+ import { fileURLToPath } from "url";
3
6
  import { McpServer, ResourceTemplate } from "@modelcontextprotocol/sdk/server/mcp.js";
4
7
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
5
8
  import { getVaultConfig, getDailyNoteConfig } from "./config.js";
@@ -10,6 +13,18 @@ import { registerWriteTools } from "./tools/write.js";
10
13
  import { registerTagTools } from "./tools/tags.js";
11
14
  import { registerLinkTools } from "./tools/links.js";
12
15
  import { registerCanvasTools } from "./tools/canvas.js";
16
+ function readPackageVersion() {
17
+ try {
18
+ // build/index.js -> package.json is one level up (project root)
19
+ const here = path.dirname(fileURLToPath(import.meta.url));
20
+ const pkgPath = path.resolve(here, "..", "package.json");
21
+ const pkg = JSON.parse(readFileSync(pkgPath, "utf-8"));
22
+ return pkg.version ?? "0.0.0";
23
+ }
24
+ catch {
25
+ return "0.0.0";
26
+ }
27
+ }
13
28
  async function main() {
14
29
  let vaultPath;
15
30
  try {
@@ -17,15 +32,19 @@ async function main() {
17
32
  vaultPath = config.vaultPath;
18
33
  }
19
34
  catch (err) {
20
- console.error(`[obsidian-mcp-pro] Failed to detect vault: ${err}`);
21
- process.exit(1);
35
+ console.error(`[obsidian-mcp-pro] Warning: ${err}`);
36
+ console.error(`[obsidian-mcp-pro] Server will start but tools will return errors until a vault is configured.`);
37
+ console.error(`[obsidian-mcp-pro] Set OBSIDIAN_VAULT_PATH environment variable to fix this.`);
22
38
  }
23
39
  const server = new McpServer({
24
40
  name: "obsidian-mcp-pro",
25
- version: "1.1.0",
41
+ version: readPackageVersion(),
26
42
  });
43
+ const noVaultError = "No Obsidian vault configured. Set OBSIDIAN_VAULT_PATH environment variable.";
27
44
  // --- MCP Resources ---
28
45
  server.resource("note", new ResourceTemplate("obsidian://note/{+path}", { list: undefined }), async (uri, params) => {
46
+ if (!vaultPath)
47
+ throw new Error(noVaultError);
29
48
  const rawPath = params.path;
30
49
  const notePath = Array.isArray(rawPath) ? rawPath.join("/") : (rawPath ?? "");
31
50
  if (!notePath) {
@@ -49,6 +68,8 @@ async function main() {
49
68
  }
50
69
  });
51
70
  server.resource("tags", "obsidian://tags", async (uri) => {
71
+ if (!vaultPath)
72
+ throw new Error(noVaultError);
52
73
  const tagIndex = {};
53
74
  const notes = await listNotes(vaultPath);
54
75
  for (const notePath of notes) {
@@ -78,6 +99,8 @@ async function main() {
78
99
  };
79
100
  });
80
101
  server.resource("daily", "obsidian://daily", async (uri) => {
102
+ if (!vaultPath)
103
+ throw new Error(noVaultError);
81
104
  const dailyConfig = getDailyNoteConfig(vaultPath);
82
105
  const today = new Date();
83
106
  const year = today.getFullYear();
@@ -118,16 +141,17 @@ async function main() {
118
141
  }
119
142
  });
120
143
  // --- Register tool groups ---
121
- registerReadTools(server, vaultPath);
122
- registerWriteTools(server, vaultPath);
123
- registerTagTools(server, vaultPath);
124
- registerLinkTools(server, vaultPath);
125
- registerCanvasTools(server, vaultPath);
144
+ const effectiveVaultPath = vaultPath ?? "";
145
+ registerReadTools(server, effectiveVaultPath);
146
+ registerWriteTools(server, effectiveVaultPath);
147
+ registerTagTools(server, effectiveVaultPath);
148
+ registerLinkTools(server, effectiveVaultPath);
149
+ registerCanvasTools(server, effectiveVaultPath);
126
150
  // --- Connect transport ---
127
151
  const transport = new StdioServerTransport();
128
152
  await server.connect(transport);
129
153
  console.error(`[obsidian-mcp-pro] Server started`);
130
- console.error(`[obsidian-mcp-pro] Vault: ${vaultPath}`);
154
+ console.error(`[obsidian-mcp-pro] Vault: ${vaultPath ?? "(not configured)"}`);
131
155
  }
132
156
  main().catch((err) => {
133
157
  console.error(`[obsidian-mcp-pro] Fatal error: ${err}`);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"vault.d.ts","sourceRoot":"","sources":["../../src/lib/vault.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAe,UAAU,EAAE,MAAM,aAAa,CAAC;AAWzE,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,MAAM,CAUhF;AAED,wBAAsB,SAAS,CAC7B,SAAS,EAAE,MAAM,EACjB,MAAM,CAAC,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,EAAE,CAAC,CA6BnB;AAED,wBAAsB,QAAQ,CAC5B,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,MAAM,CAAC,CAUjB;AAED,wBAAsB,SAAS,CAC7B,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAIf;AAED,wBAAsB,YAAY,CAChC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAKf;AAED,wBAAsB,aAAa,CACjC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAkBf;AAED,wBAAsB,UAAU,CAC9B,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,QAAQ,UAAO,GACd,OAAO,CAAC,IAAI,CAAC,CAgBf;AAED,wBAAsB,QAAQ,CAC5B,SAAS,EAAE,MAAM,EACjB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAWf;AAED,wBAAsB,WAAW,CAC/B,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,OAAO,CAAC,EAAE;IACR,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,GACA,OAAO,CAAC,YAAY,EAAE,CAAC,CAuDzB;AAED,wBAAsB,YAAY,CAChC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,IAAI,GAAG,IAAI,CAAC;IAAC,QAAQ,EAAE,IAAI,GAAG,IAAI,CAAA;CAAE,CAAC,CASxE;AAED,wBAAsB,eAAe,CACnC,SAAS,EAAE,MAAM,GAChB,OAAO,CAAC,MAAM,EAAE,CAAC,CAoBnB;AAED,wBAAsB,cAAc,CAClC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,UAAU,CAAC,CAiBrB;AAED,wBAAsB,eAAe,CACnC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,IAAI,CAAC,CAIf"}
1
+ {"version":3,"file":"vault.d.ts","sourceRoot":"","sources":["../../src/lib/vault.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAe,UAAU,EAAE,MAAM,aAAa,CAAC;AAoDzE,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,MAAM,CAUhF;AAED,wBAAsB,SAAS,CAC7B,SAAS,EAAE,MAAM,EACjB,MAAM,CAAC,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,EAAE,CAAC,CAenB;AAED,wBAAsB,QAAQ,CAC5B,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,MAAM,CAAC,CAUjB;AAED,wBAAsB,SAAS,CAC7B,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAIf;AAED,wBAAsB,YAAY,CAChC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAKf;AAED,wBAAsB,aAAa,CACjC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAkBf;AAED,wBAAsB,UAAU,CAC9B,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,QAAQ,UAAO,GACd,OAAO,CAAC,IAAI,CAAC,CAgBf;AAED,wBAAsB,QAAQ,CAC5B,SAAS,EAAE,MAAM,EACjB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,IAAI,CAAC,CAWf;AAED,wBAAsB,WAAW,CAC/B,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,OAAO,CAAC,EAAE;IACR,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,GACA,OAAO,CAAC,YAAY,EAAE,CAAC,CAuDzB;AAED,wBAAsB,YAAY,CAChC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,IAAI,GAAG,IAAI,CAAC;IAAC,QAAQ,EAAE,IAAI,GAAG,IAAI,CAAA;CAAE,CAAC,CASxE;AAED,wBAAsB,eAAe,CACnC,SAAS,EAAE,MAAM,GAChB,OAAO,CAAC,MAAM,EAAE,CAAC,CAUnB;AAED,wBAAsB,cAAc,CAClC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,UAAU,CAAC,CAiBrB;AAED,wBAAsB,eAAe,CACnC,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,UAAU,GACf,OAAO,CAAC,IAAI,CAAC,CAIf"}