@miraigent/free-ai-ops-mcp 0.1.38 → 0.1.40

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.40] - 2026-07-16
4
+
5
+ ### Changed
6
+
7
+ - Added a public npm command to the prompt-risk JSON-RPC session example so
8
+ users can test the stop-before-AI-use path before cloning the repository or
9
+ connecting private workflow data.
10
+
11
+ ## [0.1.39] - 2026-07-15
12
+
13
+ ### Added
14
+
15
+ - Added smoke-test coverage for the public `--help` feedback route and
16
+ private-memory boundary so npm users keep seeing the safe GitHub issue path
17
+ before sharing MCP troubleshooting details.
18
+
3
19
  ## [0.1.38] - 2026-07-14
4
20
 
5
21
  ### Changed
@@ -13,6 +13,10 @@ From the repository root:
13
13
 
14
14
  npm run mcp < examples/prompt-risk-json-rpc-session/sample-session.jsonl
15
15
 
16
+ From the public npm package:
17
+
18
+ npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp < examples/prompt-risk-json-rpc-session/sample-session.jsonl
19
+
16
20
  You should receive three JSON-RPC response lines. The final response should
17
21
  include a `prompt_risk_review` result with:
18
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
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",
@@ -24,6 +24,8 @@ await new Promise((resolve, reject) => {
24
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
+ assert.match(helpStdout, /private memory behavior/);
28
+ assert.match(helpStdout, /github\.com\/Miraigent\/miraigent-free-ai-ops-mcp\/issues\/new\/choose/);
27
29
 
28
30
  const requests = [
29
31
  { jsonrpc: '2.0', id: 1, method: 'initialize', params: {} },