@miraigent/free-ai-ops-mcp 0.1.16 → 0.1.17

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.17] - 2026-06-19
4
+
5
+ ### Fixed
6
+
7
+ - Restored the package to a single npm bin entry so `npx
8
+ @miraigent/free-ai-ops-mcp` resolves to the default command reliably.
9
+
3
10
  ## [0.1.16] - 2026-06-19
4
11
 
5
12
  ### Added
package/README.md CHANGED
@@ -37,9 +37,6 @@ This is the fastest public proof path for npm and GitHub users. If the command
37
37
  starts but the returned status is confusing, open a Tried It feedback issue with
38
38
  the command, synthetic input shape, and returned status only.
39
39
 
40
- The package also exposes `free-ai-ops-mcp` and `miraigent-free-ai-ops-mcp` as
41
- bin aliases for npm exec environments that require an explicit command name.
42
-
43
40
  If you are checking the package from npm search, run the public help first:
44
41
 
45
42
  npx @miraigent/free-ai-ops-mcp --help
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.16' };
3
+ const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.17' };
4
4
 
5
5
  const tools = [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "Free MCP server for developers adding human review gates, prompt risk checks, FAQ review, and CRM note safety to AI tools.",
5
5
  "homepage": "https://github.com/Miraigent/miraigent-free-ai-ops-mcp",
6
6
  "type": "module",
@@ -17,10 +17,7 @@
17
17
  "mcp/",
18
18
  "scripts/"
19
19
  ],
20
- "bin": {
21
- "free-ai-ops-mcp": "mcp/free-ai-ops-server.mjs",
22
- "miraigent-free-ai-ops-mcp": "mcp/free-ai-ops-server.mjs"
23
- },
20
+ "bin": "mcp/free-ai-ops-server.mjs",
24
21
  "scripts": {
25
22
  "check": "node --check mcp/free-ai-ops-server.mjs && node --check scripts/smoke-test.mjs && node --check scripts/secret-scan.mjs && node scripts/secret-scan.mjs",
26
23
  "test": "node scripts/smoke-test.mjs",