@runsec/mcp 1.0.22 → 1.0.24

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.
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ // Windows: never point MCP at `dist/index.js` directly — .js is often bound to
5
+ // Windows Script Host. This shim is the npm `bin` target so `npx` / PATH run Node.
6
+ require("../dist/index.js");
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@runsec/mcp",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist",
7
+ "bin",
7
8
  "README.md"
8
9
  ],
9
10
  "bin": {
10
- "runsec-mcp": "dist/index.js"
11
+ "runsec-mcp": "bin/runsec-mcp.cjs"
11
12
  },
12
13
  "publishConfig": {
13
14
  "access": "public"