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

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,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.18] - 2026-06-19
4
+
5
+ ### Fixed
6
+
7
+ - Replaced the direct scoped-package `npx @miraigent/free-ai-ops-mcp` README
8
+ path with the verified `npm exec --package ... -- free-ai-ops-mcp` command so
9
+ npm users get a reliable public run path.
10
+
11
+ ## [0.1.17] - 2026-06-19
12
+
13
+ ### Fixed
14
+
15
+ - Restored the package to a single npm bin entry so `npx
16
+ @miraigent/free-ai-ops-mcp` resolves to the default command reliably.
17
+
3
18
  ## [0.1.16] - 2026-06-19
4
19
 
5
20
  ### Added
package/README.md CHANGED
@@ -11,7 +11,7 @@ reaches customers or shared systems.
11
11
 
12
12
  Run the public MCP server:
13
13
 
14
- npx @miraigent/free-ai-ops-mcp
14
+ npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp
15
15
 
16
16
  Then send a JSON-RPC tool call such as the copy-ready example in
17
17
  examples/human-review-gate/.
@@ -24,7 +24,7 @@ one tool call, see examples/mcp-json-rpc-session/.
24
24
  Use this when you want to confirm the npm package works before editing a desktop
25
25
  MCP client config:
26
26
 
27
- npx -y @miraigent/free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
27
+ npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
28
28
 
29
29
  The response should include:
30
30
 
@@ -37,12 +37,9 @@ 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
- npx @miraigent/free-ai-ops-mcp --help
42
+ npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp --help
46
43
 
47
44
  The help output lists the available MCP tools, the one-command smoke test, and
48
45
  the public-safe boundary before you send any JSON-RPC input.
@@ -155,7 +152,7 @@ internal policy text, and paid product files out of public issues and screenshot
155
152
  ## What To Do Next
156
153
 
157
154
  - Try one tool with synthetic data.
158
- - If you ran `npx @miraigent/free-ai-ops-mcp`, paste the public-safe result
155
+ - If you ran `npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp`, paste the public-safe result
159
156
  shape into the Tried It feedback issue.
160
157
  - Share what happened in the Tried It feedback issue if setup, JSON-RPC input,
161
158
  or the returned gate decision was unclear.
@@ -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.18' };
4
4
 
5
5
  const tools = [
6
6
  {
@@ -69,10 +69,10 @@ function printHelp() {
69
69
  process.stdout.write(`Miraigent Free AI Ops MCP ${serverInfo.version}
70
70
 
71
71
  Run the public MCP server:
72
- npx @miraigent/free-ai-ops-mcp
72
+ npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp
73
73
 
74
74
  Run a copy-ready public smoke test:
75
- npx -y @miraigent/free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
75
+ npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
76
76
 
77
77
  Available tools:
78
78
  human_review_gate Stop/review/approve AI drafts before sending
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.18",
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",
@@ -18,8 +18,7 @@
18
18
  "scripts/"
19
19
  ],
20
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"
21
+ "free-ai-ops-mcp": "mcp/free-ai-ops-server.mjs"
23
22
  },
24
23
  "scripts": {
25
24
  "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",
@@ -21,7 +21,7 @@ await new Promise((resolve, reject) => {
21
21
  });
22
22
  });
23
23
 
24
- assert.match(helpStdout, /npx @miraigent\/free-ai-ops-mcp/);
24
+ assert.match(helpStdout, /npm exec --yes --package=@miraigent\/free-ai-ops-mcp/);
25
25
  assert.match(helpStdout, /human_review_gate/);
26
26
  assert.match(helpStdout, /Do not paste secrets/);
27
27