@fazer-ai/mcp-obsidian 1.0.3 → 1.0.4

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 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -23286,7 +23286,6 @@ class Obsidian {
23286
23286
  headers,
23287
23287
  body
23288
23288
  }) {
23289
- console.error(`[${method}] ${this.baseUrl}${path}`);
23290
23289
  const response = await fetch(`${this.baseUrl}${path}`, {
23291
23290
  method,
23292
23291
  headers: { ...this.headers, ...headers },
@@ -30416,7 +30415,7 @@ var import_express = __toESM(require_express2(), 1);
30416
30415
 
30417
30416
  // package.json
30418
30417
  var name = "@fazer-ai/mcp-obsidian";
30419
- var version = "1.0.3";
30418
+ var version = "1.0.4";
30420
30419
 
30421
30420
  // src/index.ts
30422
30421
  var server = new McpServer({ name, version });
@@ -30441,6 +30440,4 @@ app.post("/messages", async (req, res) => {
30441
30440
  res.status(400).send("No transport found for sessionId");
30442
30441
  }
30443
30442
  });
30444
- app.listen(config_default.port, () => {
30445
- console.error(`Server is running on http://localhost:${config_default.port}`);
30446
- });
30443
+ app.listen(config_default.port);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fazer-ai/mcp-obsidian",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "module": "src/index.ts",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",