@fazer-ai/mcp-obsidian 1.0.8 → 1.0.9

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 +1 -1
package/dist/index.js CHANGED
@@ -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.8";
7172
+ var version = "1.0.9";
7173
7173
 
7174
7174
  // src/index.ts
7175
7175
  var server = new McpServer({ name, version });
@@ -7177,7 +7177,7 @@ registerTools(server);
7177
7177
  async function main() {
7178
7178
  const transport = new StdioServerTransport;
7179
7179
  await server.connect(transport);
7180
- console.error("Weather MCP Server running on stdio");
7180
+ console.error(`Running ${name}@${version} MCP Server on stdio`);
7181
7181
  }
7182
7182
  main().catch((error) => {
7183
7183
  console.error("Fatal error in main():", error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fazer-ai/mcp-obsidian",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "module": "src/index.ts",
5
5
  "main": "dist/index.js",
6
6
  "bin": "dist/index.js",