@fazer-ai/mcp-obsidian 1.0.7 → 1.0.8

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 (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -4333,7 +4333,7 @@ function registerTools(server) {
4333
4333
  content: [{ type: "text", text: "OK" }]
4334
4334
  };
4335
4335
  });
4336
- server.tool("open_file", "Opens a file, optionally in a new leaf.", { filename: z.string(), newLeaf: z.boolean().optional() }, async (args) => {
4336
+ server.tool("open_file", "Opens a file, optionally in a new leaf.", { filename: z.string(), newLeaf: z.boolean() }, async (args) => {
4337
4337
  await obsidian.openFile(args);
4338
4338
  return {
4339
4339
  content: [{ type: "text", text: "OK" }]
@@ -7169,7 +7169,7 @@ class StdioServerTransport {
7169
7169
 
7170
7170
  // package.json
7171
7171
  var name = "@fazer-ai/mcp-obsidian";
7172
- var version = "1.0.7";
7172
+ var version = "1.0.8";
7173
7173
 
7174
7174
  // src/index.ts
7175
7175
  var server = new McpServer({ name, version });
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@fazer-ai/mcp-obsidian",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "module": "src/index.ts",
5
5
  "main": "dist/index.js",
6
+ "bin": "dist/index.js",
6
7
  "type": "module",
7
8
  "files": [
8
9
  "dist"
9
10
  ],
10
- "bin": "dist/index.js",
11
11
  "license": "MIT",
12
12
  "repository": {
13
13
  "type": "git",