mcp-server-markview 1.2.11 → 1.3.0

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/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -75,7 +75,9 @@ module.exports.default = createSandboxServer;
75
75
  if (require.main === module) {
76
76
  const { resolve } = require("path");
77
77
  const fs = require("fs");
78
- const binary = resolve(__dirname, "bin/mcp-server-markview");
78
+ // Downloaded binary path — written here by postinstall.js (different name from the
79
+ // shell bin script at bin/mcp-server-markview to avoid an infinite spawn loop).
80
+ const binary = resolve(__dirname, "bin/markview-mcp-server-binary");
79
81
 
80
82
  if (process.platform === "darwin" && fs.existsSync(binary)) {
81
83
  const { spawn } = require("child_process");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-markview",
3
- "version": "1.2.11",
3
+ "version": "1.3.0",
4
4
  "description": "MCP server for MarkView — preview Markdown files in a native macOS viewer",
5
5
  "license": "MIT",
6
6
  "author": "Paul Kang <contact@paulkang.dev>",