mcp-supervisor 0.5.0 → 0.6.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/install.js +1 -1
  2. package/package.json +2 -2
package/install.js CHANGED
@@ -53,7 +53,7 @@ function fetch(url) {
53
53
  function extractTarGz(buf, destDir) {
54
54
  const tmp = path.join(destDir, "_archive.tar.gz");
55
55
  fs.writeFileSync(tmp, buf);
56
- execSync(`tar xzf ${JSON.stringify(tmp)} -C ${JSON.stringify(destDir)}`);
56
+ execSync("tar", ["xzf", tmp, "-C", destDir]);
57
57
  fs.unlinkSync(tmp);
58
58
  }
59
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-supervisor",
3
- "version": "0.5.0",
3
+ "version": "0.6.4",
4
4
  "description": "MCP server that dynamically starts and manages other MCP servers",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -22,7 +22,7 @@
22
22
  ],
23
23
  "repository": {
24
24
  "type": "git",
25
- "url": "https://github.com/miyamiyaz/mcp-supervisor"
25
+ "url": "git+https://github.com/miyamiyaz/mcp-supervisor.git"
26
26
  },
27
27
  "bin": {
28
28
  "supervisor-mcp": "run.js"