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

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.19] - 2026-06-19
4
+
5
+ ### Fixed
6
+
7
+ - Updated README, help output, and MCP client config examples to the verified
8
+ npm alias command `npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp`,
9
+ which resolves the scoped package binary consistently in public tests.
10
+
3
11
  ## [0.1.18] - 2026-06-19
4
12
 
5
13
  ### Fixed
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
- npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp
14
+ npx -y free-ai-ops-mcp@npm:@miraigent/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
- npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
27
+ npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
28
28
 
29
29
  The response should include:
30
30
 
@@ -39,7 +39,7 @@ the command, synthetic input shape, and returned status only.
39
39
 
40
40
  If you are checking the package from npm search, run the public help first:
41
41
 
42
- npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp --help
42
+ npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp --help
43
43
 
44
44
  The help output lists the available MCP tools, the one-command smoke test, and
45
45
  the public-safe boundary before you send any JSON-RPC input.
@@ -66,7 +66,7 @@ Add to your `claude_desktop_config.json` or Cursor MCP settings:
66
66
  "mcpServers": {
67
67
  "miraigent-free-ai-ops-mcp": {
68
68
  "command": "npx",
69
- "args": ["-y", "@miraigent/free-ai-ops-mcp"]
69
+ "args": ["-y", "free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp"]
70
70
  }
71
71
  }
72
72
  }
@@ -107,7 +107,7 @@ public-safe result shape that shows where the review gate helped or felt unclear
107
107
 
108
108
  Good public-safe issue body:
109
109
 
110
- Command: npx @miraigent/free-ai-ops-mcp
110
+ Command: npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp
111
111
  Tool: human_review_gate
112
112
  Input shape:
113
113
  draftType: customer support reply
@@ -152,7 +152,7 @@ internal policy text, and paid product files out of public issues and screenshot
152
152
  ## What To Do Next
153
153
 
154
154
  - Try one tool with synthetic data.
155
- - If you ran `npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp`, paste the public-safe result
155
+ - If you ran `npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp`, paste the public-safe result
156
156
  shape into the Tried It feedback issue.
157
157
  - Share what happened in the Tried It feedback issue if setup, JSON-RPC input,
158
158
  or the returned gate decision was unclear.
@@ -272,7 +272,7 @@ developer-focused distribution route.
272
272
 
273
273
  Run from npm:
274
274
 
275
- npx @miraigent/free-ai-ops-mcp
275
+ npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp
276
276
 
277
277
  Run checks:
278
278
 
@@ -301,7 +301,7 @@ Package name: @miraigent/free-ai-ops-mcp
301
301
 
302
302
  Command:
303
303
 
304
- npx @miraigent/free-ai-ops-mcp
304
+ npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp
305
305
 
306
306
  ## Public Boundary
307
307
 
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.18' };
3
+ const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.19' };
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
- npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp
72
+ npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp
73
73
 
74
74
  Run a copy-ready public smoke test:
75
- npm exec --yes --package=@miraigent/free-ai-ops-mcp -- free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
75
+ npx -y free-ai-ops-mcp@npm:@miraigent/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.18",
3
+ "version": "0.1.19",
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",
@@ -21,7 +21,7 @@ await new Promise((resolve, reject) => {
21
21
  });
22
22
  });
23
23
 
24
- assert.match(helpStdout, /npm exec --yes --package=@miraigent\/free-ai-ops-mcp/);
24
+ assert.match(helpStdout, /npx -y free-ai-ops-mcp@npm:@miraigent\/free-ai-ops-mcp/);
25
25
  assert.match(helpStdout, /human_review_gate/);
26
26
  assert.match(helpStdout, /Do not paste secrets/);
27
27