mcp-obsidian-cli 1.3.0 → 1.3.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.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/package.json +2 -1
  3. package/server.js +1 -1
package/README.md CHANGED
@@ -101,6 +101,10 @@ Config precedence: env vars > config file > hardcoded defaults
101
101
  | Obsidian plugins | CLI plugin | REST API plugin | None |
102
102
  | Commands | 80+ | ~10 | ~6 |
103
103
 
104
+ ## Bugs / requests
105
+
106
+ File an issue: https://github.com/stonematt/mcp-obsidian-cli/issues/new/choose. Bug template asks for version, MCP client, tool call, and response — quick to fill, fast to act on.
107
+
104
108
  ## License
105
109
 
106
110
  MIT
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "mcp-obsidian-cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
+ "mcpName": "io.github.stonematt/mcp-obsidian-cli",
4
5
  "type": "module",
5
6
  "description": "MCP server wrapping the Obsidian CLI — full native API access over Model Context Protocol",
6
7
  "main": "server.js",
package/server.js CHANGED
@@ -234,7 +234,7 @@ async function runTool(input) {
234
234
 
235
235
  const server = new McpServer({
236
236
  name: "obsidian-mcp",
237
- version: "1.3.0",
237
+ version: "1.3.1",
238
238
  capabilities: { tools: {} },
239
239
  });
240
240